Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Framework | 11,749 | 843 | 324 | 8 months ago | 58 | March 31, 2022 | 56 | mit | TypeScript | |
The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia. | ||||||||||
Cli | 407 | 813 | 153 | a year ago | 137 | June 07, 2022 | 63 | mit | JavaScript | |
The Aurelia 1 command line tool. Use the CLI to create projects, scaffold components, and bundle your app for release. | ||||||||||
App Contacts | 109 | 5 years ago | 4 | other | JavaScript | |||||
A sample app that lets you browse and edit contacts. | ||||||||||
App Ux Showcase | 100 | 4 years ago | 5 | HTML | ||||||
An application that showcases the various features of Aurelia UX. | ||||||||||
Generator Aurelia | 77 | 2 | 7 years ago | 21 | November 03, 2016 | JavaScript | ||||
Yeoman generator for the JavaScript Framework Aurelia | ||||||||||
Sentry | 55 | 8 years ago | other | JavaScript | ||||||
An Aurelia template with a built in authentication shell. | ||||||||||
Registry | 42 | 6 years ago | mit | |||||||
A registry of Aurelia plugins, cli plugins, gists and other awesome goodies you can use with Aurelia and its tools. | ||||||||||
Cli | 36 | 1 | 5 years ago | 69 | November 05, 2018 | mit | TypeScript | |||
Command line interface to the UniteJS zero configuration web app creation tool. | ||||||||||
Aurelia Cli Electron App | 31 | 6 years ago | 2 | TypeScript | ||||||
A basic example of aurelia (cli) running in electron with vscode breakpoint debugging | ||||||||||
Templating Binding | 31 | 634 | 50 | a year ago | 29 | April 02, 2022 | 3 | mit | TypeScript | |
An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax. |
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. 😉
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.
//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"
];
}
<!-- app.html -->
<template>
<form>
<label for="name-field">What is your name?</label>
<input id="name-field" value.bind="name & debounce:500">
<label for="quest-field">What is your quest?</label>
<select id="quest-field" value.bind="quest">
<option></option>
<option repeat.for="q of quests">${q}</option>
</select>
</form>
<p if.bind="name">${welcome}, ${name}!</p>
<p if.bind="quest">Now set forth ${quest.toLowerCase()}!</p>
</template>
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.
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.
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.
If you have questions, join us in our dedicated discourse forum or submit questions on stack overflow.
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.
Aurelia is MIT licensed. You can find out more and read the license document here.