Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 868 Bytes

README.md

File metadata and controls

60 lines (44 loc) · 868 Bytes

AL Components

Sandbox app to practice creating some commonly used UI components.

Live deployment here: https://al-components.herokuapp.com/

npm scripts

To see all available scripts:

$ npm run

Dev

$ npm run dev

This runs a development mode server with live reload etc.

Open http://localhost:8080 in your browser.

Production

$ npm install
$ npm start

or

$ npm run build
$ npm start

This runs a production-ready express server that serves up a bundled and minified version of the client.

Note: AoT is enabled by default. To disable AoT, use npm run build:jit.

Open http://localhost:8080 in your browser.

Tests

Single Run (with linting and coverage)

$ npm test
# or
$ npm t

Watch Files

$ npm run test:watch

Coverage

$ npm run cover