Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 759 Bytes

Readme.md

File metadata and controls

53 lines (40 loc) · 759 Bytes

Overview of the files

backend - files for the node.js backend with express, mongoose, cors and babel

frontend - files for the frontend website build on angular

Installation

Install Node.js:


Go to the website at https://nodejs.org/

Install Angular CLI

npm install -g @angular/cli

Install backend dependencies (express, mongoose, cors, babel, babel-watch)

cd backend
npm install

Install frontend dependencies (angular, typescript)

cd backend
npm install

Starting the Component

To start the backend server run :

npm run dev

It is accessible on http://localhost:4000

To start the frontend run:

cd frontend
ng serve --open

It is accessible on http://localhost:4200/