create
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.
index.ts
https://charmaine--5322ffa4313611f0a084569c3dd06744.web.val.run
A simple personal Customer Relationship Management (CRM) system built on Val Town.
- Store and manage contacts
- Track interactions with contacts (calls, emails, meetings)
- Search and filter contacts
- Add notes and reminders
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ └── api.ts # API endpoints
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── ContactList.tsx # List of contacts
│ │ ├── ContactDetail.tsx # Contact details view
│ │ ├── ContactForm.tsx # Add/edit contact form
│ │ └── InteractionForm.tsx # Add interaction form
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types and interfaces
- Visit the HTTP endpoint to access the CRM interface
- Add contacts with their details
- Record interactions with your contacts
- Search and filter to find specific contacts
- Backend: Hono, SQLite
- Frontend: React, Tailwind CSS
- Shared: TypeScript