mirror of
https://github.com/SrIzan10/helium.git
synced 2026-06-06 00:56:58 +00:00
2aa36b433b7e7abaa2a616588f21de09b822e5f8
Helium
Effortless screensharing powered by WebRTC.
Prerequisites
TURN Server Setup
To enable connections through restrictive NATs, you need a TURN server. We use Metered's Open Relay which provides 50GB/month free.
-
Sign up for a free account at https://dashboard.metered.ca/signup
-
Create a new app (you'll get an app name like
yourapp.metered.live) -
Copy your API key from the dashboard
-
Fill in your credentials in
.env:
METERED_APP_NAME=yourapp
METERED_API_KEY=your_api_key_here
REDIS_URL=redis://localhost:6379
Setup
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Development Server
Start the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Production
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.
Releases
2
Languages
Vue
51.5%
TypeScript
45.5%
CSS
1.8%
JavaScript
0.9%
Dockerfile
0.3%