Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 512 Bytes

File metadata and controls

28 lines (24 loc) · 512 Bytes

Project: Todo API

Rules

  • Read files before editing
  • Use TaskCreate/TaskUpdate to track work
  • Ask before deleting files or deploying
  • Verify changes by running tests

Stack

  • Backend: Node.js + Express
  • Database: SQLite
  • Tests: Jest

Commands

npm run dev      # Start dev server (port 3000)
npm test         # Run tests

Structure

src/
  index.js       # Entry point
  routes.js      # API routes
  db.js          # Database connection
tests/
  routes.test.js # API tests