Skip to content

Books app - Basic CRUD with Node, Express, and MongoDB

Notifications You must be signed in to change notification settings

naldomadeira/books-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Books app - Basic CRUD with Node, Express, and MongoDB

NODE

Build Status

CRUD, Express and MongoDB

  • Express is a framework for building web applications on top of Node.js. It simplifies the server creation process that is already available in Node. In case you were wondering, Node allows you to use JavaScript as your server-side language.

  • MongoDB is a database. This is the place where you store information for your websites (or applications).

  • CRUD is an acronym for Create, Read, Update and Delete. It is a set of operations we get servers to execute (POST, GET, PUT and DELETE requests respectively). This is what each operation does:

Create (POST) - Make something Read (GET)- Get something Update (PUT) - Change something Delete (DELETE)- Remove something POST, GET, PUT, and DELETE requests let us construct Rest APIs.

Project setup

$ npm install

Run

$ node src/server.js

About

Books app - Basic CRUD with Node, Express, and MongoDB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published