{"id":13453249,"url":"https://github.com/aurelia/framework","last_synced_at":"2025-05-11T05:45:22.776Z","repository":{"id":38916402,"uuid":"27835638","full_name":"aurelia/framework","owner":"aurelia","description":"The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.","archived":false,"fork":false,"pushed_at":"2023-01-27T11:32:58.000Z","size":3253,"stargazers_count":11736,"open_issues_count":59,"forks_count":618,"subscribers_count":387,"default_branch":"master","last_synced_at":"2025-05-11T05:45:19.716Z","etag":null,"topics":["aurelia-framework","cross-platform","framework","html","javascript","mobile","single-page-applications","spa","typescript","web"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aurelia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":"aurelia","ko_fi":null,"tidelift":null,"custom":null}},"created_at":"2014-12-10T19:22:29.000Z","updated_at":"2025-05-08T08:07:31.000Z","dependencies_parsed_at":"2023-02-08T06:01:14.880Z","dependency_job_id":null,"html_url":"https://github.com/aurelia/framework","commit_stats":null,"previous_names":[],"tags_count":93,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelia%2Fframework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelia%2Fframework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelia%2Fframework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurelia%2Fframework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aurelia","download_url":"https://codeload.github.com/aurelia/framework/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253523717,"owners_count":21921818,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aurelia-framework","cross-platform","framework","html","javascript","mobile","single-page-applications","spa","typescript","web"],"created_at":"2024-07-31T08:00:36.516Z","updated_at":"2025-05-11T05:45:22.754Z","avatar_url":"https://github.com/aurelia.png","language":"TypeScript","readme":"\u003cp\u003e\n  \u003ca href=\"https://aurelia.io/\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Aurelia\" src=\"https://aurelia.io/styles/images/aurelia.svg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![npm Version](https://img.shields.io/npm/v/aurelia-framework.svg)](https://www.npmjs.com/package/aurelia-framework)\n![ci](https://github.com/aurelia/framework/actions/workflows/main.yml/badge.svg)\n[![Discourse status](https://img.shields.io/discourse/https/meta.discourse.org/status.svg)](https://discourse.aurelia.io)\n[![Twitter](https://img.shields.io/twitter/follow/aureliaeffect.svg?style=social\u0026label=Follow)](https://twitter.com/intent/follow?screen_name=aureliaeffect)\n[![Discord Chat](https://img.shields.io/discord/448698263508615178.svg)](https://discord.gg/RBtyM6u)\n\n# aurelia-framework\n\nAurelia 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:\n\nThis 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.\n\nAurelia 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. \n\n```js\n//app.js\nexport class App {\n  welcome = \"Welcome to Aurelia\";\n\n  quests = [\n    \"To seek the holy grail\",\n    \"To take the ring to Mordor\",\n    \"To rescue princess Leia\"\n  ];\n}\n```\n\n```html\n\u003c!-- app.html --\u003e\n\u003ctemplate\u003e\n  \u003cform\u003e\n    \u003clabel for=\"name-field\"\u003eWhat is your name?\u003c/label\u003e\n    \u003cinput id=\"name-field\" value.bind=\"name \u0026 debounce:500\"\u003e\n\n    \u003clabel for=\"quest-field\"\u003eWhat is your quest?\u003c/label\u003e\n    \u003cselect id=\"quest-field\" value.bind=\"quest\"\u003e\n      \u003coption\u003e\u003c/option\u003e\n      \u003coption repeat.for=\"q of quests\"\u003e${q}\u003c/option\u003e\n    \u003c/select\u003e\n  \u003c/form\u003e\n\n  \u003cp if.bind=\"name\"\u003e${welcome}, ${name}!\u003c/p\u003e\n  \u003cp if.bind=\"quest\"\u003eNow set forth ${quest.toLowerCase()}!\u003c/p\u003e\n\u003c/template\u003e\n```\n\n\u003e Check out the interactive version of this example on [Code Sandbox](https://codesandbox.io/s/y41qjr36j).\n\nThis 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).\n\nFeeling excited? To quickly get started building your project with aurelia, you can use the [aurelia CLI](https://aurelia.io/docs/cli/basics).\n\n## Documentation\n\nYou can read the documentation for the aurelia framework [here](http://aurelia.io/docs). It's divided into the following sections:\n\n* [Overview](https://aurelia.io/docs/) : Discover what Aurelia is along with its business and technical advantages.\n* [Tutorials](https://aurelia.io/docs/tutorials) : Step-by-step tutorials teaching you how to build your first Aurelia applications.\n* [Fundamentals](https://aurelia.io/docs/) : After you've completed the quick starts, learn more about Aurelia's app model, components, dependency injection and more.\n* [Binding](https://aurelia.io/docs/binding): Learn all about Aurelia's powerful, reactive binding engine.\n* [Templating](https://aurelia.io/docs/binding): Learn all about Aurelia's powerful templating engine.\n* [Routing](https://aurelia.io/docs/routing): Learn how to setup and configure Aurelia's router.\n* [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.\n* [Integration](https://aurelia.io/docs/integration): Learn how to integrate Aurelia with various other libraries and frameworks.\n* [Testing](https://aurelia.io/docs/testing): Learn all about testing Aurelia apps, including component testing and e2e testing.\n* [Server Side Rendering](https://aurelia.io/docs/ssr): Learn about Server Side Rendering with Aurelia and how to configure your project.\n* [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.\n* [Build Systems](https://aurelia.io/docs/build-systems): Learn how to use Webpack or JSPM directly for building apps without the Aurelia CLI.\n  \n\u003e You can improve the documentation by contributing to [this repository](https://github.com/aurelia/documentation).\n\n## Staying Up-to-Date\n\nTo 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).\n\n## Questions\n\nIf 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).\n\n## Contributing\n\nWe'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.\n\n## License \n\nAurelia is MIT licensed. You can find out more and read the license document [here](LICENSE).\n","funding_links":["https://opencollective.com/aurelia"],"categories":["JavaScript","TypeScript","Dependencies","Table of Contents","framework","Framework or Library","前端开发框架及项目","web","Libraries"],"sub_categories":["Binding Variations","Aurelia","Web development or MVC","其他_文本生成、文本对话","JavaScript"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurelia%2Fframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faurelia%2Fframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurelia%2Fframework/lists"}