You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Installation
1. Clone the repository:
```sh
git clone https://github.com/your-username/bookstore.git
cd bookstore
```
2. Install dependencies:
```sh
npm install
```
## Usage
### General Users
1. **Get the book list available in the shop:**
```sh
node src/index.js
```
2. **Get the books based on ISBN:**
```sh
node src/index.js
```
3. **Get all books by Author:**
```sh
node src/index.js
```
4. **Get all books based on Title:**
```sh
node src/index.js
```
5. **Get book Review:**
```sh
node src/index.js
```
6. **Register New user:**
```sh
node src/index.js
```
7. **Login as a Registered user:**
```sh
node src/index.js
```
### Registered Users
1. **Add/Modify a book review:**
```sh
node src/index.js
```
2. **Delete book review added by that par
# bookstore