aurelia

aurelia-framework

The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.
Under MIT License
By aurelia

web javascript typescript html cross-platform framework mobile spa single-page-applications aurelia-framework






aurelia-framework

Aurelia is a modern, front-end JavaScript framework for building browser, mobile, and desktop applications. It focuses on aligning closely with web platform specifications, using convention over configuration, and having minimal framework intrusion. Basically, we want you to just write your code without the framework getting in your way. :wink:


This library is part of the Aurelia platform. It contains the aurelia-framework library, which brings together all the required core aurelia libraries into a ready-to-go application-building platform.


Aurelia applications are built by composing a series of simple components. By convention, components are made up of a vanilla JavaScript or Typescript class, with a corresponding HTML template.


```js
//app.js
export class App {
welcome = "Welcome to Aurelia";


quests = [
"To seek the holy grail",
"To take the ring to Mordor",
"To rescue princess Leia"
];
}
```


```html

What is your name?

What is your quest?


${q}



${welcome}, ${name}!


Now set forth ${quest.toLowerCase()}!



```



Check out the interactive version of this example on Code Sandbox.



This example shows you some of the powerful features of the aurelia binding syntax. To see further examples, online playgrounds, guides, and detailed API documentation, head on over to aurelia.io.


Feeling excited? To quickly get started building your project with aurelia, you can use the aurelia CLI.


Documentation

You can read the documentation for the aurelia framework here. It's divided into the following sections:




You can improve the documentation by contributing to this repository.



Staying Up-to-Date

To keep up to date on Aurelia, please visit and subscribe to the official blog and our email list. We also invite you to follow us on twitter.


Questions

If you have questions, join us in our dedicated discourse forum or submit questions on stack overflow.


Contributing

We'd love for you to contribute and help make Aurelia even better than it is today! You can start by checking out our contributing guide, which has everything you need to get up and running.


License

Aurelia is MIT licensed. You can find out more and read the license document here.