Recently I decided to change the build system I use on my main Aurelia project. I changed in April 2016 from JSPM to Webpack (JSPM was really not awesome at the time, I can't say for now), again in August 2016 from Webpack to the CLI and now I am …
read moreOther articles
Writing a PWA with Aurelia
I feel like Progressive Web Application (PWA for short) are a more and more popular way to build mobile apps. That's understandable since you can use the same technology you use to build a SPA to build one! So you …
read moreSome thoughts on Aurelia Store
On my spare time, I am developing a board game that uses the Aurelia framework. I currently manage the state in a service without any dedicated state management solutions (like RxJS, Aurelia store, Redux, …). And I feel I am reaching to the limit of what I can do with it …
read moreIssues while writing tests for a component using i18n
Some time ago, I wanted to add some tests (behavior and render) on an Aurelia component that uses the i18n plugin and more precisely the df attribute in the view to display a localized date.
Since it was a while back (I wanted to write it earlier but couldn't), my …
read moreExtract translations from your Aurelia app
If you use Aurelia with the i18n plugin, you will have to maintain JSON files that will map a translation key to an actual translation. Manually editing the file to add/remove keys can be tedious.
Luckily, keys can be extracted automatically thanks to i18next-scanner. It can extract translation keys …
read moreIntegrate Rollbar with Aurelia
A sample application with Aurelia UX
This is a follow up to my Small comparison of ionic2 and Aurelia + Framework7 for hybrid mobile applications article where I compared ionic2 and Aurelia with Framework 7 for building an hybrid applications. At the time, Aurelia UX was not yet ready (and we were expecting a different, closed source …
read moreForm validation with Aurelia
Update (2017-07-20): aurelia-validation now supports events, so it is much easier to disable the submission of the form until it is valid. See the Disable the submission until the form is valid section for the code.
Update (2017-01-25): after new exchanges with Doug Kent I was able to improve my …
read moreMake navigation user friendly on your Aurelia SPA
Sommaire
read moreAdd a spinner
Add the font awesome files to your project (CSS and fonts files).
Import the font awesome style sheet in your index.html
<link rel="stylesheet" href="/assets/fonts/fontawesome/font-awesome …