Skip to content

Latest commit

 

History

History

client

aurelia-api-loopback-sample

A simple sample of the aurelia-skeleton where aurelia-api is used to connect to a loopback server.

Running The App

To run the app, follow these steps.

  1. Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
  2. From the project folder, execute the following command:
  npm install
  1. Ensure that Gulp is installed globally. If you need to install it, use the following command:
  npm install -g gulp

Note: Gulp must be installed globally, but a local version will also be installed to ensure a compatible version is used for the project.

  1. Ensure that jspm is installed globally. If you need to install it, use the following command:
  npm install -g jspm

Note: jspm must be installed globally, but a local version will also be installed to ensure a compatible version is used for the project.

  1. Install the client-side dependencies with jspm:
  jspm install -y
  1. To run the app, execute the following command:
  gulp watch
  1. Browse to http://localhost:9000 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.