https://github.com/dj0nny/aurelia-customer-manager
Simple web app built w/ Aurelia.js and Skeleton CSS
https://github.com/dj0nny/aurelia-customer-manager
aurelia aurelia-framework aureliajs javascript
Last synced: 3 months ago
JSON representation
Simple web app built w/ Aurelia.js and Skeleton CSS
- Host: GitHub
- URL: https://github.com/dj0nny/aurelia-customer-manager
- Owner: dj0nny
- Created: 2019-12-14T10:11:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T17:11:04.000Z (over 2 years ago)
- Last Synced: 2025-01-02T00:26:43.976Z (5 months ago)
- Topics: aurelia, aurelia-framework, aureliajs, javascript
- Language: JavaScript
- Homepage:
- Size: 4.11 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `aurelia-customer-manager`
This project is bootstrapped by [aurelia-cli](https://github.com/aurelia/cli).
For more information, go to https://aurelia.io/docs/cli/webpack
## Run dev app
Run `npm start`, then open `http://localhost:8080`
You can change the standard webpack configurations from CLI easily with something like this: `npm start -- --open --port 8888`. However, it is better to change the respective npm scripts or `webpack.config.js` with these options, as per your need.
To enable Webpack Bundle Analyzer, do `npm run analyze` (production build).
To enable hot module reload, do `npm start -- --hmr`.
To change dev server port, do `npm start -- --port 8888`.
To change dev server host, do `npm start -- --host 127.0.0.1`
**PS:** You could mix all the flags as well, `npm start -- --host 127.0.0.1 --port 7070 --open --hmr`
For long time aurelia-cli user, you can still use `au run` with those arguments like `au run --env prod --open --hmr`. But `au run` now simply executes `npm start` command.
## Build for production
Run `npm run build`, or the old way `au build --env prod`.
## Unit tests
Run `au test` (or `au jest`).
To run in watch mode, `au test --watch` or `au jest --watch`.