Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 898 Bytes

README.md

File metadata and controls

43 lines (37 loc) · 898 Bytes

Usersbook

The application is the address book of users

How to start

In order to start the project use:

$ git clone https://github.com/vasaeps3/usersbook
$ cd usersbook
# install the project's dependencies
$ npm install

Development server

Run for a dev server:

$ npm start

Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Build

Run to build the project:

$ npm run build

The build artifacts will be stored in the dist/ directory.

Use the for a production build:

$ npm run prod

The produced code can be deployed to a remote server.

Running unit tests

Run to execute the unit tests via Karma.

$ npm run test

Tslint

Run to execute lint you app code using tslint.

$ npm run lint