Getting Started
Concepts
Project
Help
Vite Integration
One-line integration for Vite projects (React, Vue, Svelte, etc.)
Installation
Terminal
npm install @byronwade/beam @byronwade/beam-vite --save-dev
Configuration
Add the plugin to your vite.config.ts:
vite.config.ts
12345678910import { defineConfig } from 'vite';import { beam } from '@byronwade/beam-vite';export default defineConfig({plugins: [beam({silent: false // optional})]});
Development
Start your dev server:
Terminal
npm run dev
Beam will automatically tunnel the Vite dev server port (default 5173).
Support & Community
Report Issues
Found a bug or have a feature request?
Open an issue on our GitHub repository to get help from the team and community.
Open GitHub IssueDocumentation
Help us improve our guides.
This documentation is open source. Feel free to contribute updates or fixes.
Edit on GitHub