https://github.com/andrewlo/al-components
Reference implementation of common UI components in Angular
https://github.com/andrewlo/al-components
angular components
Last synced: about 2 months ago
JSON representation
Reference implementation of common UI components in Angular
- Host: GitHub
- URL: https://github.com/andrewlo/al-components
- Owner: andrewlo
- License: mit
- Created: 2017-02-24T17:56:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T00:36:44.000Z (almost 9 years ago)
- Last Synced: 2025-01-17T23:40:36.950Z (over 1 year ago)
- Topics: angular, components
- Language: TypeScript
- Homepage:
- Size: 141 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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:
```bash
$ npm run
```
### Dev
```bash
$ npm run dev
```
This runs a development mode server with live reload etc.
Open `http://localhost:8080` in your browser.
### Production
```bash
$ npm install
$ npm start
```
or
```bash
$ 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)
```bash
$ npm test
# or
$ npm t
```
#### Watch Files
```bash
$ npm run test:watch
```
#### Coverage
```bash
$ npm run cover
```