JavaScript for Line of Business Applications
596.1K views | +0 today
Follow
JavaScript for Line of Business Applications
Keeping track of current JavaScript Frameworks that help design your clientside Business Logic Layers.
Curated by Jan Hesse
Beam to my Inbox:
Your new post is loading...
Your new post is loading...

Popular Tags - Filter using the Funnel

Current selected tag: 'Aurelia'. Clear
Scoop.it!

JWT Authentication in Aurelia

JWT Authentication in Aurelia | JavaScript for Line of Business Applications | Scoop.it

This week community member Ryan Chenkie shows us how to implement JWT Authentication in Aurelia. Ryan is a full-stack developer from Canada who works for Auth0 as a Tech Writer where he provides in-depth tutorials and seed projects for the newest frameworks such as Angular 2, React, and Aurelia as well as other modern web technologies.

No comment yet.
Scoop.it!

Creating Reactive, Loosely Coupled Apps with Aurelia and Flux

Creating Reactive, Loosely Coupled Apps with Aurelia and Flux | JavaScript for Line of Business Applications | Scoop.it

In the previous episode I covered different parts of aurelia-flux. This time, I would like to get you through creating a fully working reactive Aurelia application. Let us start with the simple Todo List application and we'll see where we can get to.

No comment yet.
Scoop.it!

Devnexus 2015 - Durandal Aurelia Next Generation Web Apps

No comment yet.
Scoop.it!

Extending HTML the Aurelia.io Way

Extending HTML the Aurelia.io Way | JavaScript for Line of Business Applications | Scoop.it
Expanding our Aurelia Reddit client, Aurelia core team member, Vildan Softic, demonstrates how to extend HTML by leveraging custom elements and attributes.
No comment yet.
Scoop.it!

Aurelia's Adaptive Binding

Aurelia's Adaptive Binding | JavaScript for Line of Business Applications | Scoop.it

Aurelia employs several strategies when observing object properties. The best strategy is chosen depending on the features of the browser and the type of object/property being observed. Here's a run-down of the techniques used, in order of priority.

No comment yet.
Scoop.it!

Angular 2.0 Vs Aurelia

The new direction Angular 2.0 is taking created a lot of discussion in the community. Some people love it, some people hate it. Most people agree there is room for simplification, performance enhancements and native support of new language features. Not everyone likes the way Angular 2.0 is picking these up though. There is an alternative direction: Aurelia. In this talk, we'll do a side-by-side comparison and have the audience answer the question: Should you keep all your eggs in the Angular basket?

Scoop.it!

Creating Reactive, Loosely Coupled Apps with Aurelia and Flux - Episode 1

Creating Reactive, Loosely Coupled Apps with Aurelia and Flux - Episode 1 | JavaScript for Line of Business Applications | Scoop.it

Why should we even bother with reactive programming? Well, we all do care about writing testable, loosely coupled code, but are our dependencies really loose? Imagine that you have a working piece of code implementing particular business logic, and you would like to connect a new feature into the flow. If your code isn't reactive yet, you would have to add more "if-ology" to it, causing you to have to change the existing code base - that is not what I believe loosely coupled dependencies look like. How can the reactive, unidirectional Flux pattern help?

No comment yet.
Scoop.it!

Porting an Angular 2.0 App to Aurelia

Porting an Angular 2.0 App to Aurelia | JavaScript for Line of Business Applications | Scoop.it

Recently, Joe Eames had a nice PluralSight webinar demonstrating some of the features of Angular 2.0. We thought "Wouldn't it be cool to see the same app built with Aurelia?" It seemed like a good opportunity to show what we feel makes Aurelia so easy-to-use and efficient.

The Rules

In order to ensure that this is an even and accurate comparison, we set some ground rules:

  1. The code should be a direct port unless there is a blaring issue or error in the source.
  2. The code should use all of the same variables and names in order to avoid confusion.
  3. We'll use the standard Aurelia skeleton as our starting point.
No comment yet.
Scoop.it!

Building a Treeview in Aurelia

Building a Treeview in Aurelia | JavaScript for Line of Business Applications | Scoop.it

There seems to be a community forming behind Aurelia, so I figured I'd give it a try and build something of manageable complexity. I landed on a treeview component since it requires me to touch upon several of the different binding types in addition to recursive templates. The treeview supports recursive rendering of a few U.S. states with cities and boroughs. There is also support for expand/collapse of nodes with children.

Aurelia is a modern framework, with support for ES6 out of the box, which requires some setup to get transpiling and the rest of the development environment up and running. In order to simplify the process I recommend downloading the provided skeleton project and use it as a baseline. Aurelia is still a new framework, but the documentation on their website is already impressive and answered most of my questions.

No comment yet.