This is a RESTful API built using Node.js and the Express web framework. It allows users to perform CRUD (Create, Read, Update, and Delete) operations on data stored in a JavaScript array.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Node.js
- npm
- Clone the repository to your local machine
git clone https://github.com/MunemHashmi/nodejs-express-crud-api.git
- Install dependencies
cd nodejs-express-crud-api
npm install
npm start
Returns a list of all users.
Creates a new user.
Returns the details of a specific user by their ID.
Deletes a specific user by their ID.
Updates the details of a specific user by their ID.
- Node.js
- Express