Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aurelia/framework
The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.
https://github.com/aurelia/framework
aurelia-framework cross-platform framework html javascript mobile single-page-applications spa typescript web
Last synced: 3 days ago
JSON representation
The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.
- Host: GitHub
- URL: https://github.com/aurelia/framework
- Owner: aurelia
- License: mit
- Created: 2014-12-10T19:22:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-01-27T11:32:58.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T11:10:00.937Z (about 1 month ago)
- Topics: aurelia-framework, cross-platform, framework, html, javascript, mobile, single-page-applications, spa, typescript, web
- Language: TypeScript
- Homepage:
- Size: 3.1 MB
- Stars: 11,752
- Watchers: 392
- Forks: 624
- Open Issues: 58
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-game-engine-dev - Aurelia - Modern, front-end framework for browser, mobile, and desktop apps. (Libraries / JavaScript)
- awesome-js - Aurelia - A Framework that leverages simple conventions to empower your creativity (Framework or Library / Web development or MVC)
- awesome-starred - aurelia/framework - The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia. (web)
- awesome-aurelia - Official GitHub Repo
- StarryDivineSky - aurelia/framework
README
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![npm Version](https://img.shields.io/npm/v/aurelia-framework.svg)](https://www.npmjs.com/package/aurelia-framework)
![ci](https://github.com/aurelia/framework/actions/workflows/main.yml/badge.svg)
[![Discourse status](https://img.shields.io/discourse/https/meta.discourse.org/status.svg)](https://discourse.aurelia.io)
[![Twitter](https://img.shields.io/twitter/follow/aureliaeffect.svg?style=social&label=Follow)](https://twitter.com/intent/follow?screen_name=aureliaeffect)
[![Discord Chat](https://img.shields.io/discord/448698263508615178.svg)](https://discord.gg/RBtyM6u)# 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](http://www.aurelia.io/) 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](https://codesandbox.io/s/y41qjr36j).
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](https://aurelia.io).
Feeling excited? To quickly get started building your project with aurelia, you can use the [aurelia CLI](https://aurelia.io/docs/cli/basics).
## Documentation
You can read the documentation for the aurelia framework [here](http://aurelia.io/docs). It's divided into the following sections:
* [Overview](https://aurelia.io/docs/) : Discover what Aurelia is along with its business and technical advantages.
* [Tutorials](https://aurelia.io/docs/tutorials) : Step-by-step tutorials teaching you how to build your first Aurelia applications.
* [Fundamentals](https://aurelia.io/docs/) : After you've completed the quick starts, learn more about Aurelia's app model, components, dependency injection and more.
* [Binding](https://aurelia.io/docs/binding): Learn all about Aurelia's powerful, reactive binding engine.
* [Templating](https://aurelia.io/docs/binding): Learn all about Aurelia's powerful templating engine.
* [Routing](https://aurelia.io/docs/routing): Learn how to setup and configure Aurelia's router.
* [Plugins](https://aurelia.io/docs/plugins): Learn about Aurelia's officially supported plugins and how to use them, including validation, i18n, http, dialog and state management.
* [Integration](https://aurelia.io/docs/integration): Learn how to integrate Aurelia with various other libraries and frameworks.
* [Testing](https://aurelia.io/docs/testing): Learn all about testing Aurelia apps, including component testing and e2e testing.
* [Server Side Rendering](https://aurelia.io/docs/ssr): Learn about Server Side Rendering with Aurelia and how to configure your project.
* [CLI](https://aurelia.io/docs/cli): Learn how to create, build, bundle and test your apps using all your favorite tools, facilitated by the Aurelia CLI.
* [Build Systems](https://aurelia.io/docs/build-systems): Learn how to use Webpack or JSPM directly for building apps without the Aurelia CLI.
> You can improve the documentation by contributing to [this repository](https://github.com/aurelia/documentation).## Staying Up-to-Date
To keep up to date on [Aurelia](http://www.aurelia.io/), please visit and subscribe to [the official blog](http://blog.aurelia.io/) and [our email list](http://eepurl.com/ces50j). We also invite you to [follow us on twitter](https://twitter.com/aureliaeffect).
## Questions
If you have questions, join us in [our dedicated discourse forum](https://discourse.aurelia.io/) or submit questions on [stack overflow](http://stackoverflow.com/search?q=aurelia).
## 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](CONTRIBUTING.md), 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](LICENSE).