This is a quickstart for using the Zoom Video SDK for Svelte using SvelteKit
- Node LTS
- NPM
- Zoom Video SDK credentials
- Clone the repository
git clone https://github.com/zoom/videosdk-sveltekit-quickstart.git- Create an
.envfile in the root directory
cd videosdk-sveltekit-quickstart
cp .env.example .envFill in the ZOOM_SDK_KEY and ZOOM_SDK_SECRET with your credentials.
- Install the dependencies
npm install- Run the development server
bun run dev# or start the server and open the app in a new browser tab
npm run dev -- --openOpen a browser and visit http://localhost:5173/.
To create a production version of your app:
npm run buildYou can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.