This is a NodeJS Express App bundled with the Skeleton App of the Aurelia platform. It sets up a standard navigation-style app using gulp to build your ES6 code with the babel compiler. Karma/Jasmine testing is also configured.
For more info please visit the official site: http://www.aurelia.io/
- Fork or download this repo
- Navigate into the folder
- Install the Apps dependencies
npm install
- Download a fresh copy of the skeleton app by issuing following command:
node bin/install
- Navigate to the frontend folder
cd public/app
- Ensure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulp
- Ensure that jspm is installed. If you need to install it, use the following command:
npm install -g jspm
Note: jspm queries GitHub to install semver packages, but GitHub has a rate limit on anonymous API requests. It is advised that you configure jspm with your GitHub credentials in order to avoid problems. You can do this by executing
jspm endpoint config github
and following the prompts.
- Install the client-side dependencies with jspm:
jspm install
Note: Windows users, if you experience an error of "unknown command unzip" you can solve this problem by doing
npm install -g unzip
and then re-runningjspm install
.
- To run the app go back to the project root and execute the following command:
gulp watch
- Browse to http://localhost:7000 to see the app. You can make changes in the code found under
src
and the browser should auto-refresh itself as you save files.
Note: If you prefer to run the node app without Gulp just do
node app.js
You can easily serve your Views from the Node Backend. This example uses the Swig Templating Engine, but you are of course free to choose whatever you want :)
If you take a look at the folder views/welcome.html
you'll see the welcome View being served by NodeJS. The route association can be found in routes/api.js
. The code below demonstrates how to reply with the html file.
/* GET welcome view */
router.get('/views/welcome', function(req, res) {
res.render('welcome', {nodePort: require('../app').get('port')});
});
In order to use this in Aurelia open the file public/app/src/welcome.js
and add following method to the Welcome Class. This will make sure that the VM requests the server-side View during the navigation instruciton.
getViewStrategy() {
return '../../views/welcome';
}
An example of how to use Protractor for E2E Testing with Aurelia has been added. In order to run them you need to make sure protractor and the necessary webdriver is installed
npm install -g protractor
webdriver-manager update
Now start up the application in one Terminal with from the project root with the command:
node app.js
After that, in another Terminal, from the project root, just type following:
protractor protractor.conf.js