June 2018
Intermediate to advanced
348 pages
8h 19m
English
Aurelia, like many JavaScript frameworks, allows you to create reusable components that help you avoid writing duplicated code, reuse your component in multiple parts of your app, and also export them as plugins to reuse them in other projects.
Aurelia allows you to generate the reusable pieces of code utilizing the following templates:
These templates are all located in our project root folder in the aurelia_project/generators folder. For example, the following command generates a custom Aurelia element:
au generate element my-reusable-element
The source code will be generated in the src/resources/{type} folder depending on the ...
Read now
Unlock full access