项目作者: motasimfoad

项目描述 :
basic CRUD operation nodeJS api boilerplate with MongoDB & Express.
高级语言: JavaScript
项目地址: git://github.com/motasimfoad/CRUD-API-NODE-EXPRESS-MONGO.git
创建时间: 2020-04-14T11:33:08Z
项目社区:https://github.com/motasimfoad/CRUD-API-NODE-EXPRESS-MONGO

开源协议:

下载


CRUD-API_NODE_EXPRESS_MONGO

basic CRUD operation nodeJS api boilerplate with MongoDB & Express.

If you have any queries feel free to ping me via https://motasimfoad.com/contact

Its a simple note keeping api containing 2 felds, Title and Description. Which take post request and intermingle with MongoDB on Localhost.

Properties & Endpoints :

CREATE endpoint >> localhost:4200/notes/

  1. >> POST body {
  2. title : "String"
  3. desc : "String"
  4. }

UPDATE endpoint >> localhost:4200/notes/{id}

  1. >> PUT body {
  2. title : "String"
  3. desc : "String"
  4. }

READ/FIND endpoint >> localhost:4200/notes/{id}

  1. >> GET

DELETE endpoint >> localhost:4200/notes/{id}

  1. >> DELETE