This project is a Node.js API for managing a library system, which includes books, users, and transactions. It uses PostgreSQL as the database and follows Clean Architecture principles.
- Docker and Docker Compose installed on your machine
Install Docker:
brew install --cask docker
Start Docker Desktop: After installation, open Docker Desktop from your Applications folder.
Install Docker Compose (already included with Docker Desktop): Docker Compose is bundled with Docker Desktop, so no extra steps are required.
Install WSL 2 (if not installed):
wsl --install
Install Docker Desktop for Windows: Download Docker Desktop from Docker's official site and follow the installer instructions.
git clone https://github.com/juan9222/library-management-system.git
cd library-management-system
npm install
mv .env.example .env
Build and start the Docker containers:
docker-compose up --build
The API will be running at http://localhost:9000.
URL: /api/v1/books Method: GET Description: Returns all books in the library. Response Example:
[
{
"id": 1,
"title": "The Great Gatsby",
"author": "F. Scott Fitzgerald",
"status": "available",
"createdAt": "2024-08-01T00:00:00.000Z",
"updatedAt": "2024-08-01T00:00:00.000Z"
},
{
"id": 2,
"title": "1984",
"author": "George Orwell",
"status": "borrowed",
"createdAt": "2024-08-01T00:00:00.000Z",
"updatedAt": "2024-08-01T00:00:00.000Z"
}
]
URL: /api/v1/borrow Method: POST Description: Allows a user to borrow a book. Request Example:
{
"userId": 1,
"bookId": 1
}
Response Example:
{
"message": "Book borrowed successfully"
}
URL: /api/v1/return Method: POST Description: Allows a user to return a borrowed book. Request Example:
{
"userId": 1,
"bookId": 1
}
Response Example:
{
"message": "Book returned successfully"
}
URL: /api/v1/users/:id/borrowed-books Method: GET Description: Fetches a list of books currently borrowed by a specific user. Response Example:
[
{
"id": 1,
"title": "The Great Gatsby",
"author": "F. Scott Fitzgerald",
"borrowDate": "2024-09-01T00:00:00.000Z",
"returnDate": null
}
]
URL: /api/v1/users/:id/history Method: GET Description: Fetches the borrowing history for a specific user. Response Example:
[
{
"id": 1,
"title": "The Great Gatsby",
"author": "F. Scott Fitzgerald",
"borrowDate": "2024-09-01T00:00:00.000Z",
"returnDate": "2024-09-10T00:00:00.000Z"
}
]