CRUD, Express, and MongoDB are large words for a never contacted individual any server-side programming in their life. How about we rapidly present what they are before we plunge into the instructional exercise.
Express is a structure for building web applications on top of Node.js. It works on the server creation process that is as of now accessible in Node. On the off chance that you were pondering, Node permits you to involve JavaScript as your server-side language.
MongoDB is a database. Here you store data for your sites (or applications).
CRUD is an abbreviation for Create, Read, Update and Delete. It is a bunch of activities we get servers to execute (POST, GET, PUT and DELETE demands individually). This is the thing that every activity does:
Create (POST) - Make something
Read (GET)- Get something
Update (PUT) - Change something
Delete (DELETE)- Remove something
Top comments (0)