I've created a simple API using Node and Express using the Get, Post, Patch, Delete operations on Postman(API Platform).
This project is a simple RESTful API built using Node.js and Express. It demonstrates basic CRUD (Create, Read, Update, Delete) operations using HTTP methods: GET, POST, PATCH, and DELETE. The API can be tested using Postman or any other API testing tool.
- GET: Retrieve data from the server.
- POST: Add new data to the server.
- PATCH: Update existing data on the server.
- DELETE: Remove data from the server.
- Node.js: A JavaScript runtime for building server-side applications.
- Express: A web framework for Node.js to simplify API development.
- Postman: A platform for testing APIs.
- Node.js installed on your machine. Download it here.
- npm (Node Package Manager) installed with Node.js.
- Postman or any API testing tool.