Jotter
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v25View latest version
A simple and user-friendly notes app for remote workspaces.
- Clean, minimal interface
- Real-time note editing
- Organized note management
- Search functionality
- Responsive design
├── backend/
│ ├── index.ts # Main API server
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ └── routes/
│ └── notes.ts # Notes API endpoints
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── NotesList.tsx # Notes sidebar
│ │ ├── NoteEditor.tsx # Note editing area
│ │ └── SearchBar.tsx # Search functionality
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types
The app uses:
- Backend: Hono.js for API routes
- Frontend: React with TypeScript
- Database: SQLite for note storage
- Styling: TailwindCSS