https://github.com/dev-saw99/book-store
https://github.com/dev-saw99/book-store
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dev-saw99/book-store
- Owner: dev-saw99
- Created: 2020-07-10T10:01:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T05:17:43.000Z (over 3 years ago)
- Last Synced: 2025-02-06T10:53:27.401Z (over 1 year ago)
- Language: JavaScript
- Size: 2.48 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pick-a-Book
Pick-a-Book is a dashboard application for a book shop. It offers following features:
* Sell books
* Add new books to Inventory
* Search for books in Inventory
* Generate bill of each sale
## Dependencies
* ReactJS (Client)
* Golang (Web-Services)
Install ReactJS using node-package-manager (npm)
npm install -g create-react-app
Install Golang from [here](http://golang.org)
## Buil this project
Clone this repository using follwing command
git clone https://github.com/dev-saw99/book-store
Navigate to **services** directory in the book-store, run following command:
go run main.go
This will start the go web-services.
Open a new terminal, navigate back to the book-store folder and run:
npm install
npm start
This will start react client.
---
## Todo
- [x] Add Search Feature
- [x] Create API for search
- [ ] Integrate API of Search with client
- [x] Add Selling form
- [x] Create API for selling books
- [ ] Integrate API for selling books with client
- [x] Add Inventory Form
- [x] Create API for Inventory operations
- [x] Integrate API for Inverntory operations to inventory form
- [x] API to fetch all books from inventory
- [x] Integrate API to display all available books in inventory
- [ ] Integrate bill printing system
- [ ] MongoDB database
*Currently project is using JSON file to store all the data*
---
> If you like this project, please give a star.
> Your valuable suggestions and feedback are welcomed [here](mailto:sonukumarsaw66@gmail.com)