Framework

The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.
Alternatives To Framework
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Framework11,7498433248 months ago58March 31, 202256mitTypeScript
The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.
Cli407813153a year ago137June 07, 202263mitJavaScript
The Aurelia 1 command line tool. Use the CLI to create projects, scaffold components, and bundle your app for release.
App Contacts109
5 years ago4otherJavaScript
A sample app that lets you browse and edit contacts.
App Ux Showcase100
4 years ago5HTML
An application that showcases the various features of Aurelia UX.
Generator Aurelia7727 years ago21November 03, 2016JavaScript
Yeoman generator for the JavaScript Framework Aurelia
Sentry55
8 years agootherJavaScript
An Aurelia template with a built in authentication shell.
Registry42
6 years agomit
A registry of Aurelia plugins, cli plugins, gists and other awesome goodies you can use with Aurelia and its tools.
Cli36
15 years ago69November 05, 2018mitTypeScript
Command line interface to the UniteJS zero configuration web app creation tool.
Aurelia Cli Electron App31
6 years ago2TypeScript
A basic example of aurelia (cli) running in electron with vscode breakpoint debugging
Templating Binding3163450a year ago29April 02, 20223mitTypeScript
An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.
Alternatives To Framework
Select To Compare


Alternative Project Comparisons
Readme

Aurelia

License: MIT npm Version ci Discourse status Twitter Discord Chat

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. 😉

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.

Documentation

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

  • Overview : Discover what Aurelia is along with its business and technical advantages.
  • Tutorials : Step-by-step tutorials teaching you how to build your first Aurelia applications.
  • Fundamentals : After you've completed the quick starts, learn more about Aurelia's app model, components, dependency injection and more.
  • Binding: Learn all about Aurelia's powerful, reactive binding engine.
  • Templating: Learn all about Aurelia's powerful templating engine.
  • Routing: Learn how to setup and configure Aurelia's router.
  • Plugins: Learn about Aurelia's officially supported plugins and how to use them, including validation, i18n, http, dialog and state management.
  • Integration: Learn how to integrate Aurelia with various other libraries and frameworks.
  • Testing: Learn all about testing Aurelia apps, including component testing and e2e testing.
  • Server Side Rendering: Learn about Server Side Rendering with Aurelia and how to configure your project.
  • CLI: Learn how to create, build, bundle and test your apps using all your favorite tools, facilitated by the Aurelia CLI.
  • 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.

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.

Popular Aurelia Projects
Popular Command Line Projects
Popular User Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Typescript
Html
Cli
Templating
Bindings
Single Page Applications
Aurelia