jsmp-infra-nik-package
Version:
my HW6 for Module2
43 lines (37 loc) • 971 B
Markdown
# Installation
Use the package manager [npm] for installing.
Run npm install to download all necessary packages
```bash
npm install
```
# Usage
For starting the app run 'npm run start'
```bash
npm run start
```
#### Compiling
For compiling scripts run 'npm run compile'
```bash
npm run compile
```
For compiling scripts and handle changings run 'npm run compile-watch'
```bash
npm run compile-watch
```
#### Clean
For removing all files and folders that are created during by compile scripts run 'npm run clean'
```bash
npm run clean
```
#### Test
For running transpiled test files run 'npm run test'
```bash
npm run test
```
For running tasks that will perform cleanup, transpilation and run tests run 'npm run task'
```bash
npm run task
```
# Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.