A simple RESTful API built with Node.js and Express.js to manage a collection of books. The API allows you to view, add, update, and delete books using JSON requests.
- GET /books β Retrieve all books.
- GET /books/:id β Retrieve a book by its ID.
- POST /books β Add a new book.
- PUT /books/:id β Update an existing book.
- DELETE /books/:id β Delete a book by its ID.
- Node.js
- Express.js
- JSON for data handling
- Postman (or any API testing tool)