https://github.com/nitor-infotech-oss/nodejs-restful-api
Do you know How to create a RESTful CRUD API using Nodejs? This tutorial will demo how to set up a bare bones API using mongodb as the database.
https://github.com/nitor-infotech-oss/nodejs-restful-api
Last synced: 7 months ago
JSON representation
Do you know How to create a RESTful CRUD API using Nodejs? This tutorial will demo how to set up a bare bones API using mongodb as the database.
- Host: GitHub
- URL: https://github.com/nitor-infotech-oss/nodejs-restful-api
- Owner: nitor-infotech-oss
- Created: 2019-06-18T12:58:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-19T06:57:45.000Z (over 5 years ago)
- Last Synced: 2025-02-01T09:22:10.266Z (8 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodejs-restful-api
Do you know How to create a RESTful CRUD API using Nodejs?
This tutorial will demo how to set up a bare bones
API using mongodb as the database.It consist of a Customer model and controller. The model
defines the data, and the controller will contain all
the business logic needed to interact with the database.It has a db file which will be used to
connect the app to the database, and an app file used
for bootstrapping the application itself.The server file is used to spin up the server and tells the
app to listen on a specific port.