Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 628 Bytes

File metadata and controls

19 lines (11 loc) · 628 Bytes

Node and Angular

Installation and starting

Install node modules with npm install and start both server and frontend with npm start (note: It will automatically open your default browser with an app in a new tab).

Server

Using node.js v10.16.3 with express.js 4.17.1

Start server with a simple command npm run server and it will run server with nodemon. Testing server with a simple command npm test.

Server uses JWT tokens for authorization with token valid for a period specified in env variable JWT_DURATION.

Frontend

Using Angular 8 and ngrx

Start server with a simple command npm run web.