You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The aurelia framework brings together all the required core libraries into an application framework.
3
+
This library is part of the [Aurelia](http://www.aurelia.io/) platform and contains the aurelia framework which brings together all the required core aurelia libraries into a ready-to-go application-building platform.
4
+
5
+
> To keep up to date on [Aurelia](http://www.aurelia.io/), please visit and subscribe to [the official blog](http://blog.durandal.io/). If you have questions, we invite you to join us on [our Gitter Channel](https://gitter.im/Aurelia/Discuss).
1. Ensure that [NodeJS](http://nodejs.org/) is installed. This provides the platform on which the build tooling runs.
27
+
2. From the project folder, execute the following command:
28
+
29
+
```shell
30
+
npm install
31
+
```
32
+
3. Ensure that [Gulp](http://gulpjs.com/) is installed. If you need to install it, use the following command:
33
+
34
+
```shell
35
+
npm install -g gulp
36
+
```
37
+
4. To build the code, you can now run:
38
+
39
+
```shell
40
+
gulp build
41
+
```
42
+
5. You will find the compiled code in the `dist` folder, available in three module formats: AMD, CommonJS and ES6.
43
+
44
+
6. See `gulpfile.js` for other tasks related to generating the docs and linting.
45
+
46
+
## Running The Tests
47
+
48
+
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
49
+
50
+
1. Ensure that the [Karma](http://karma-runner.github.io/) CLI is installed. If you need to install it, use the following command:
51
+
52
+
```shell
53
+
npm install -g karma-cli
54
+
```
55
+
2. Ensure that [jspm](http://jspm.io/) is installed. If you need to install it, use the following commnand:
56
+
57
+
```shell
58
+
npm install -g jspm
59
+
```
60
+
3. Install the client-side dependencies with jspm:
61
+
62
+
```shell
63
+
jspm install
64
+
```
65
+
66
+
4. You can now run the tests with this command:
67
+
68
+
```shell
69
+
karma start
70
+
```
71
+
72
+
## Contributing
73
+
74
+
We'd love for you to contribute to our source code and to make this project even better than it is today! If this interests you, please begin by reading [our contributing guidelines](https://github.com/DurandalProject/about/blob/master/CONTRIBUTING.md). The contributing document will provide you with all the information you need to get started. Once you have read that, you will need to also [sign our CLA](http://goo.gl/forms/dI8QDDSyKR) before we can accepts a Pull Request from you. More information on the process is including in the [contributor's guide](https://github.com/DurandalProject/about/blob/master/CONTRIBUTING.md).
0 commit comments