vanshul22 / CRUD_App

CRUD App with the help of Express JS and MongoDB. Its a APIs app will tell how your application informs your database of what functions to perform. These functions can be modeled in different ways but they are designed to perform four basic CRUD operations; Create, Read, Update, Delete.

Home Page:https://github.com/vanshul22/CRUD_App/tree/master/CRUD_App_Video_in_Local_Server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CRUD APP

CRUD App with the help of Express JS and MongoDB.
Its a APIs app will tell how your application informs your database of what functions to perform. These functions can be modeled in different ways but they are designed to perform four basic CRUD operations; Create, Read, Update, Delete.

To check CRUD_App in video please click here.

Working of this project ()=>{

  •   To run this project please download these files in your system.

  •   Please hit "npm install" in terminal where these files located to install all required packages.

  •   Make Sure Mongodb server running in background.

  •   Please hit "node app.js" in terminal to run the express server and connect database with server.

  •   To hit requests you have to hit "http://localhost:9000/persons".

  •   GET : http://localhost:9000/persons

  •   POST : http://localhost:9000/persons | Please send json parameters in this schema ()=>   { "name": "vanshul", "programming_language": "Python", "age": 23, "have_job": true }.

  •   PATCH : http://localhost:9000/persons/id_number_here | Please send json parameters any of this schema ()=>   { "name": "vanshul", "programming_language": "Python", "age": 23, "have_job": true }.

  •   DELETE : http://localhost:9000/persons/id_number_here | It will delete a particular person of same ID.

}

About

CRUD App with the help of Express JS and MongoDB. Its a APIs app will tell how your application informs your database of what functions to perform. These functions can be modeled in different ways but they are designed to perform four basic CRUD operations; Create, Read, Update, Delete.

https://github.com/vanshul22/CRUD_App/tree/master/CRUD_App_Video_in_Local_Server


Languages

Language:JavaScript 100.0%