Library sample application build with AngularJs 1.6 , Nodejs and mongodb
Running the app.
Client
Install dependencies
npm install
Running the client:
npm start
Server
Install dependencies
npm install
Running the server
start mongo:
mongod
Seeding the database. Under server folder run this commands
mongoimport --db library-dev --collection books --drop --file ./data/books.json
mongoimport --db library-dev --collection library --drop --file ./data/library.json
start express
npm start