https://github.com/felix-xilef/simple-call
A peer-to-peer video conference web app that uses WebRTC and was built with Nuxt and Socket.io.
https://github.com/felix-xilef/simple-call
nuxt socket-io webrtc
Last synced: 3 days ago
JSON representation
A peer-to-peer video conference web app that uses WebRTC and was built with Nuxt and Socket.io.
- Host: GitHub
- URL: https://github.com/felix-xilef/simple-call
- Owner: Felix-xilef
- License: mit
- Created: 2024-11-15T12:30:14.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-11-20T13:54:05.000Z (8 months ago)
- Last Synced: 2025-01-21T14:47:33.584Z (6 months ago)
- Topics: nuxt, socket-io, webrtc
- Language: Vue
- Homepage: https://simple-call-omega.vercel.app
- Size: 201 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Call
A peer to peer video conference web app that uses WebRTC and was built with Nuxt and Socket.io.


## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000` and on the local network:
> To start the server without exposing to the local network just change the `devServer` options at `nuxt.config.ts`
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview# bun
bun run preview
```