An open API service indexing awesome lists of open source software.

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

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.

![alt](https://github.com/delian1986/Book-Store/blob/master/demo.gif)
## 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