NoteBeam is a Progressive Web App (PWA) that allows you to save and share notes quickly and easily across devices without the hassle of logging in. Share your notes seamlessly with a unique 6-character token.
- Fast: Save and share your notes instantly.
- Seamless: No need to log in or create an account. Just use a unique token to access your notes.
- Secure: Your notes are safe and shared only with those who have the token.
- Save your note.
- Get a unique 6-character token.
- Share the token with anyone to give them access to your note.
- Node.js
- npm or pnpm
-
Clone the repository:
git clone https://github.com/PatphonSD/notebeam.git cd notebeam
-
Install dependencies:
npm install # or pnpm install
-
Create a
.env
file and add your environment variables:sh DATABASE_URL="file:./database.db"
-
Run the development server:
npm run dev # or yarn dev
-
Open http://localhost:3000 in your browser to see the app.
To create a production build, run:
npm run build
# or
pnpm build