-
Clone the repository:
git clone https://github.com/Utkarsh1504/bookie
-
Install dependencies:
npm install
-
Set up environment variables:
- Create a
.env
file in the root directory. - Add the following environment variables:
PORT=3000 MONGO_URL=<your_mongodb_connection_string> JWT_SECRET=<your_jwt_secret>
- Create a
-
Start the server:
npm run dev
-
POST /api/auth/register
- Register a new user.
- Request body:
{ "name": "John Doe", "email": "[email protected]", "password": "password" }
- Response:
{ "message": "User registered successfully", "user": { "_id": "5fec4d4b10cc8c33a84d4b25", "name": "John Doe", "email": "[email protected]" } }
-
POST /api/auth/login
- Login with existing credentials.
- Request body:
{ "email": "[email protected]", "password": "password" }
- Response:
{ "message": "Login successful", "name": "John Doe", "email": "[email protected]", "token": "<jwt_token>" }
-
POST /api/books
- Create a new book entry.
- Request body:
{ "title": "Book Title", "author": "Author Name", "price": 999, "year": 2022 }
- Response:
{ "message": "Book created", "book": { "_id": "5fec4d4b10cc8c33a84d4b26", "title": "Book Title", "author": "Author Name", "price": 999, "year": 2022 } }
-
GET /api/books
- Get all books.
- Response:
{ "message": "Books fetched", "books": [ { "_id": "5fec4d4b10cc8c33a84d4b26", "title": "Book Title", "author": "Author Name", "price": 999, "year": 2022 }, { "_id": "5fec4d4b10cc8c33a84d4b27", "title": "Another Book", "author": "Another Author", "price": 999, "year": 2020 } ] }
-
GET /api/books/:id
- Get a book by ID.
- Response:
{ "message": "Book fetched", "book": { "_id": "5fec4d4b10cc8c33a84d4b26", "title": "Book Title", "author": "Author Name", "price": 999, "year": 2022 } }
-
PUT /api/books/:id
- Update a book by ID.
- Request body (fields to update):
{ "title": "Updated Title" }
- Response:
{ "message": "Book updated", "book": { "_id": "5fec4d4b10cc8c33a84d4b26", "title": "Updated Title", "author": "Author Name", "price": 999, "year": 2022 } }
-
DELETE /api/books/:id
- Delete a book by ID.
- Response:
{ "message": "Book deleted" }
-
GET /api/books/filter/author/:author
- Filter books by author.
- Response:
{ "message": "Books fetched", "books": [ { "_id": "5fec4d4b10cc8c33a84d4b26", "title": "Book Title", "author": "Author Name", "price": 999, "year": 2022 } ] }
-
GET /api/books/filter/year/:year
- Filter books by publication year.
- Response:
{ "message": "Books fetched", "books": [ { "_id": "5fec4d4b10cc8c33a84d4b26", "title": "Book Title", "author": "Author Name", "price": 999, "year": 2022 } ] }
- User Authentication: User registration and login are handled securely using JWT tokens and bcrypt for password hashing.
- Input Validation: Input data for user registration, login, and book operations is validated using Zod schemas to ensure data integrity.
- Database: MongoDB is used as the database to store user and book data.
- Security Measures: Basic security measures such as input validation and JWT token authentication are implemented to protect against common security vulnerabilities.