Skip to content

Comparison of Angular and Aurelia front end frameworks

Notifications You must be signed in to change notification settings

fshchudlo/angular-aurelia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

angular-aurelia

This is a sample project for comparison of Angular and Aurelia frameworks for this article from habrahabr.ru

Running The Apps

To run apps locally, follow these steps:

  1. Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.

  2. 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 registry config github and following the prompts.

  1. Ensure that http-server is installed. This provides the server on which the app runs. If you need to install it, use the following command:
npm install -g http-server
  1. Ensure that TypeScript is installed. This provides the ability to compile application code to plain JavaScript. If you need to install it, use the following command:
npm install -g typescript
  1. Run angular2 app
  2. From the "angular2" folder under the project root, execute the following command:
```shell
npm install
```
  1. From the same "angular2" folder execute the following command:
```shell
npm start
```

This will build the app and run http server to http://localhost:3333

  1. Run aurelia app
  2. From the "aurelia" folder under the project root, execute the following command:
```shell
jspm install -y
```
  1. From the same "aurelia" folder execute the following command:
```shell
npm start
```

This will run http server to http://localhost:4444

About

Comparison of Angular and Aurelia front end frameworks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published