Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.74 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.74 KB

aurelia-registry

ZenHub Join the chat at https://gitter.im/aurelia/discuss

A registry of Aurelia plugins, cli plugins, gists and other awesome goodies you can use with Aurelia and its tools.

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, please join our community on Gitter or use stack overflow. Documentation can be found in our developer hub. If you would like to have deeper insight into our development process, please install the ZenHub Chrome or Firefox Extension and visit any of our repository's boards.

How does it work?

The registry is a list of plugins that can be used with Aurelia. They will be located and downloaded with JSPM on the registry / location that is specified.

Adding to the registry

  • Add your plugin in alphabetical order based on the name property
  • Fork this registry and create a PR

To add your plugin to the registry, please make to follow the following JSON format -

{
  "plugins": [
    {
      "name": "NAME-OF-YOUR-PLUGIN",
      "endpoint": "github", /* github, npm, etc... */
      "location": "aurelia/validation", /* where is it on that endpoint? */
    }
  ]
}