Questions tagged [aurelia]

Aurelia is a next generation JavaScript client framework that leverages simple conventions to empower your creativity.

Aurelia
is a next generation JavaScript client framework that leverages simple conventions to empower your creativity.

Features

  • Forward-thinking
  • Modern Architecture
  • Two-Way Databinding
  • Extensible HTML
  • Routing & UI Composition
  • MV* with Conventions
  • Convention over Configuration
  • Broad Language Support
  • Testable

Community

Getting Started

Presentations

For the most up to date list refer to Awesome Aurelia (curated list of resources)

3402 questions
22
votes
4 answers

Aurelia: Webpack, JSPM or CLI?

I've been developing in Aurelia-CLI for about 3 months and like it so far. I think it's a solid framework and obviously escalating in support and usage. That's a good thing! Before I develop much more of my large app, I'm wondering if I'm using…
LStarky
  • 2,740
  • 1
  • 17
  • 47
20
votes
4 answers

Reload current page in Aurelia

I have an Aurelia application where the user can select the company they're currently "working on". Every page in the app is dependent on the currently selected company, and the user can select a new company from a drop-down menu. The drop-down is a…
Sergi Papaseit
  • 15,999
  • 16
  • 67
  • 101
19
votes
4 answers

Conditionally display Element using Aurelia

So I have my auth class injected into my main.js: import {Auth} from 'auth'; import {inject} from 'aurelia-framework'; @inject(Auth) export class App { constructor(auth) { this.auth = auth; } get isLoggedIn() { return…
Callum Linington
  • 14,213
  • 12
  • 75
  • 154
19
votes
2 answers

How to switch between login page and app with Aurelia

I'm using the Aurelia skeleton for my project. Everything seemed so intuitive, however I'm stuck with a problem which I suspect is fairly easy (if you know how). The problem is that the app.html / app.js is initially showing a nav bar and loading…
Dac0d3r
  • 2,176
  • 6
  • 40
  • 76
19
votes
1 answer