This project is a simple CRUD (Create, Read, Update, Delete) application built using Node.js, Express.js, MongoDB, and EJS (Embedded JavaScript). It provides basic functionality to perform CRUD operations on a MongoDB database with dynamic rendering using EJS templates.
1.Create: Allows users to create new records and store them in the MongoDB database. 2.Read: Enables users to retrieve existing records from the MongoDB database. 3.Update: Allows users to modify and update existing records in the database. 4.Delete: Enables users to delete records from the MongoDB database.
- 1.Node.js: A runtime environment for executing JavaScript code outside a web browser.
- 2.Express.js: A web application framework for Node.js that provides robust features for web and mobile applications.
- 3.MongoDB: A NoSQL database that stores data in flexible, JSON-like documents.
- 4.EJS (Embedded JavaScript): A templating engine that enables dynamic HTML generation based on JavaScript.