https://github.com/delian1986/book-store
MEAN stack single page project for angular fundamentals js-web 2019
https://github.com/delian1986/book-store
angular-6 mongodb mongoose nodejs
Last synced: about 1 month ago
JSON representation
MEAN stack single page project for angular fundamentals js-web 2019
- Host: GitHub
- URL: https://github.com/delian1986/book-store
- Owner: delian1986
- License: mit
- Created: 2019-04-16T15:45:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-21T10:04:25.000Z (about 7 years ago)
- Last Synced: 2025-06-06T06:41:37.695Z (12 months ago)
- Topics: angular-6, mongodb, mongoose, nodejs
- Language: TypeScript
- Homepage:
- Size: 21.9 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Book-Store Single Page App
"Book-Store" is a single page application written on MEAN stack for SoftUni JS Web Course. The application consists of users, books, shopping cart and orders.

## Key Functionalities
- Anonymous users can view landing page only.
- Registered users is able to access book details and order books.
- Admin can CRUD books.
- Cart CRUD
## Installation
#### Prerequisites
- npm
- node
- mongoDB
#### Steps
```sh
git clone https://github.com/delian1986/Book-Store.git
```
```sh
cd client
npm install
```
```sh
cd server
npm install
```
Install dependencies in both server and client folders
```sh
cd server
nodemon start
```
Start backend server
```sh
cd client
ng s --o
```
Start frontend