Skip to content

govindarajit/REST-API-for-noteTakingApplication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REST API Note taking Application

Build a Restful CRUD API for a Note taking application using Node.js, Express and MongoDB.

Testing our APIs

Let's now test all the APIs one by one using postman.

Creating a new Note using POST /notes API

Retrieving all Notes using GET /notes API

Retrieving a single Note using GET /notes/:noteId API

Updating a Note using PUT /notes/:noteId API

Deleting a Note using DELETE /notes/:noteId API

Steps to Setup

  1. Install dependencies
npm install
  1. Run Server
node server.js

You can browse the apis at http://localhost:3000

Releases

No releases published

Packages

No packages published