Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 623 Bytes

File metadata and controls

33 lines (22 loc) · 623 Bytes

REST Todo API (Express)

A minimal REST API built with Node.js + Express that manages a simple Todo list (CRUD).
Perfect starter to learn REST principles and use as a template.


✨ Features

  • Clean RESTful endpoints (GET, POST, PUT, DELETE)
  • JSON request/response
  • CORS enabled
  • Zero database (in-memory) to keep it simple

🧰 Prerequisites

  • Node.js 18+ (check with node -v)
  • npm (comes with Node)

🚀 Quick Start

# 1) Install dependencies
npm install

# 2) Start the API (auto-restarts on change)
npm run dev

# or run without watch mode
npm start