/postgres-express-node

ToDo API

Primary LanguageJavaScriptMIT LicenseMIT

Todo API Build Status Coverage Status Maintainability

Todo API.

Technologies

  • Node Express
  • Postgresql Database
  • Sequelize

Commands

npm install install the required node modules

sequelize db:migrate create the necessary tables

npm run dev run the app in developer mode where it restarts when a file is saved.

npm start Start the app

npm test run the tests

Endpoints

URL Methods Description
/ GET Welcome message
/api/todos POST Create Todo
/api/todos GET Get all Todos
/api/todos/:todoId GET Get one Todo
/api/todos/:todoId PUT Update contact
/api/todos/:todoId DELETE Delete contact
/api/todos/:todoId/items POST Create Todo item
/api/todos/:todoId/items/:todoItemID PUT Update Todo item
/api/todos/:todoId/items/:todoItemID DELETE Delete Todo item