Skip to content

Latest commit

 

History

History
76 lines (51 loc) · 2.95 KB

README.md

File metadata and controls

76 lines (51 loc) · 2.95 KB

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

NPM Version Package License NPM Downloads CircleCI Coverage Discord Backers on Open Collective Sponsors on Open Collective Support us

Description

Note services

CRUD

# GET
/notes - get all notes

# GET
/notes/:id - get selected note

# GET
/notes/stats - get statistics

#POST 
/notes - create new note

# PATCH 
/notes/:id - update selected note

# DELETE 
/notes/:id delete selected note

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod