Simple Restful API with Node.js, Express, and MongoDB
This is a simple RESTful API project built with Node.js, Express, and MongoDB. It provides basic CRUD functionality for a "products" collection in a MongoDB database.
API Features
The application can create, read, update and delete data, for example: products, in a database.
API Endpoints
The API provides the following endpoints:
GET /products - get a list of all products
GET /products/:id - get a single product by ID
POST /products - create a new product
PUT /products/:id - update an existing product by ID
DELETE /products/:id - delete a product by ID