Visit my portfolio here: http://styczynski.in
- Clone/download repo
yarn install
(ornpm install
for npm)
Development
yarn run start-dev
- Build app continuously (HMR enabled)
- App served @
http://localhost:8080
Production
yarn run start-prod
- Build app once (HMR disabled)
- App served @
http://localhost:3000
Command | Description |
---|---|
yarn run start-dev |
Build app continuously (HMR enabled) and serve @ http://localhost:8080 |
yarn run start-prod |
Build app once (HMR disabled) and serve @ http://localhost:3000 |
yarn run build |
Build production-ready app to /dist/ run tests and generate documentation in /docs/ |
yarn run test |
Run tests |
yarn run lint |
Run Typescript linter |
yarn run start |
(alias of yarn run start-dev ) |