Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 651 Bytes

File metadata and controls

32 lines (26 loc) · 651 Bytes

Express.js CRUD App

This is a simple CRUD application using Express.js, SQLite, and HTML views for managing "items" (id, name, description).

Features

  • Add new items
  • View all items
  • Edit/update items

Folder Structure

  • app.js - Main application file
  • models/ - Database and data logic
  • routes/ - Express route handlers
  • views/ - HTML templates (EJS)

Setup

  1. Install dependencies:
    npm install
    
  2. Start the app:
    node app.js
    
  3. Open your browser at http://localhost:3000

Requirements

  • Node.js
  • npm

Notes

  • This is a basic starter. Extend as needed for Delete and more features.