This is a simple CRUD application using Express.js, SQLite, and HTML views for managing "items" (id, name, description).
- Add new items
- View all items
- Edit/update items
app.js- Main application filemodels/- Database and data logicroutes/- Express route handlersviews/- HTML templates (EJS)
- Install dependencies:
npm install - Start the app:
node app.js - Open your browser at
http://localhost:3000
- Node.js
- npm
- This is a basic starter. Extend as needed for Delete and more features.