Posts

Showing posts from May, 2018

Simple REST API using Node,Express and MongoDB

Image
This is a beginners guide  to create a simple REST API which contains basic CRUD operations(Create,Read,Update,Delete) using Node.js,Express js framework and MongoDB. Prerequisites         Node js         MongoDB         WebStrome (IDE)         RESTClient- to test the REST API Creating the API Open your WebStrome IDE and Go to File ->New -> Project >Empty Project Select  the location you want to create the project and hit Create button. Folder Structure Demo |_______DBSchema                   |_____DBConfig |_______UserController                   |_____Controller.js                   |_____User.Route.js |_______app.j...