https://github.com/dimabory/book-store
📚 Rise Above The Framework: Simple CRUD application (Custom Elements)
https://github.com/dimabory/book-store
Last synced: 12 months ago
JSON representation
📚 Rise Above The Framework: Simple CRUD application (Custom Elements)
- Host: GitHub
- URL: https://github.com/dimabory/book-store
- Owner: dimabory
- Created: 2018-05-18T13:20:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-18T13:46:46.000Z (about 8 years ago)
- Last Synced: 2025-06-23T05:07:53.191Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Book Store
Book Store is the simple CRUD application.

## Getting Started
```bash
$ git clone git@github.com:dimabory/book-store.git
```
### Prerequisites
Check you installed npm package manager and node envitonment:
```bash
$ npm -v
3.5.2
$ node -v
v8.10.0
```
### Installing
```bash
$ npm install
```
### How to run?
- Build assets:
```bash
$ npm run build
```
- Run fake api (json-server):
```bash
$ npm run start:json-server
```
- Run dev web server:
```bash
$ npm run start:dev
```
## Built With
* *Vanilla js (ES6)*.
* [Webpack](https://webpack.js.org/) - module bundler.
* [JSON-Server](https://github.com/typicode/json-server) - fake REST API with zero coding in less than 30 seconds.
* [faker.js](https://github.com/marak/Faker.js/) - generates massive amounts of fake data in the browser and node.js.
## Acknowledgments
* Self-evaluation;
* inspiration
* etc.
---
PS:
> A special thanks to Andrii Telenko for the interesting task and interview.