Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arhik/prof-profile-website
https://github.com/arhik/prof-profile-website
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arhik/prof-profile-website
- Owner: arhik
- Created: 2016-04-04T15:15:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-10T03:25:32.000Z (over 8 years ago)
- Last Synced: 2024-12-22T22:53:42.826Z (13 days ago)
- Language: JavaScript
- Size: 186 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aurelia-skeleton-navigation-webpack
## Getting Started
Before you start, make sure you have a working [NodeJS](http://nodejs.org/) environment, preferably with NPM 3.
From the project folder, execute the following command:
```shell
npm install
```This will install all required dependencies, including a local version of Webpack that is going to
build and bundle the app. There is no need to install Webpack globally.To run the app execute the following command:
```shell
npm run dev
```This command starts the Webpack development server that serves the built bundles.
You can now browse the skeleton app at http://localhost:3000. Changes in the code
will automatically build and reload the app.> **Note**: when using NPM 2.x, you might encounter a run-time error like '_aureliaPal.DOM.injectStyles is not a function'.
To work around this issue, execute the command *npm dedupe*.## Bundling
To build a development bundle (output to /build) execute:
```shell
npm run build
```To build an optimized, minified production bundle (output to /dist) execute:
```shell
npm run prod
```The production bundle includes all files that are required for deployment.
## Testing
To run the unit tests:```shell
npm run test
```> **Note**: The e2e tests aren't working yet