Mello is a web app for screen sharing through web browser. This service works by using the webrtc protocol and websocket to establish the connection between users. After the connection is established, streaming is peer-to-peer.
Mello was created to offer an alternative to Discord's screen sharing feature. While Discord's screen sharing is limited to 720p for non-Nitro users and can be unreliable at times, Mello aims to provide a more reliable solution with higher quality streaming, all available for free. The motivation behind creating Mello stems from a desire to enhance the user experience by ensuring consistency and reliability in screen sharing.
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.