https://github.com/kartheekgj/crudapi
This is a repo for CRUD application using mongo nodejs and express
https://github.com/kartheekgj/crudapi
crud-application expressjs mlabs mongo-nodejs nodejs rest-api
Last synced: 27 days ago
JSON representation
This is a repo for CRUD application using mongo nodejs and express
- Host: GitHub
- URL: https://github.com/kartheekgj/crudapi
- Owner: kartheekgj
- License: unlicense
- Created: 2018-11-21T06:45:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-27T04:56:13.000Z (over 7 years ago)
- Last Synced: 2025-04-22T23:18:15.231Z (about 1 year ago)
- Topics: crud-application, expressjs, mlabs, mongo-nodejs, nodejs, rest-api
- Language: JavaScript
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CRUD API
This is a repo for CRUD application using mongo nodejs and express
After downloading do the following steps to start the application
1. npm install
2. npm run start
This will start the application @ localhost:5123
please use following links to do the crud applications
- READ ALL:
GET http://localhost:5123/api/v1/todos/all
- READ ONE:
GET http://localhost:5123/api/v1/todos/1
- InsertOne:
headers: title: "RANDOM TEXT"
POST http://localhost:5123/api/v1/todos/post
- DELETE ONE:
POST http://localhost:5123/api/v1/todos/del/5
DELETE ALL: POST http://localhost:5123/api/v1/todos/del/all