This repo contains a quickstart for using the Zoom VideoSDK with Next.js. There's a quickstart for both the Next.js App Router and the Pages Router. You can use either the app-router
or the pages-router
branch of this repository.
You can learn more about the differences here.
- Node LTS
- Bun (or NPM)
- Zoom Video SDK Account
- Clone the repository
$ git clone https://github.com/zoom/videosdk-nextjs-quickstart.git
- Install dependencies
$ bun install # or npm install
- Copy
.env.example
to.env
and fill in your Zoom Video SDK credentials as:
ZOOM_SDK_KEY="your-key"
ZOOM_SDK_SECRET="your-secret"
- Start the development server
$ bun dev # or npm run dev
You can open http://localhost:3000 with your browser to view the project.