
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@casl/aurelia
Advanced tools
Aurelia plugin for CASL which makes it easy to add permissions in any Aurelia apps
This package allows to integrate @casl/ability with Aurelia application. It provides AbleValueConverter and deprecated CanValueConverter to Aurelia templates, so you can show or hide components, buttons, etc based on user ability to see them.
npm install @casl/aurelia @casl/ability
# or
yarn add @casl/aurelia @casl/ability
# or
pnpm add @casl/aurelia @casl/ability
@casl/aurelia exports configure function which fulfills requirements of Aurelia plugin. So, you can pass it in plugin function:
import ability from './services/ability';
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('@casl/aurelia', ability); // <-- add plugin
aurelia.start().then(() => aurelia.setRoot());
}
The plugin accepts an optional 2nd argument, ability instance for your app. You can also register the instance by calling container's API directly but make sure that you register PureAbility key, value converters request Ability instance by this key. This allows an application developer to decide how to configure actions, subjects and conditions. Also this is the only way to get maximum from tree shaking (e.g., if you don't need conditions, you can use PureAbility and get rid of sift library).
import { Ability, PureAbility } from '@casl/ability';
import ability from './services/ability';
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('@casl/aurelia'); // <-- add plugin
aurelia.container.registerInstance(PureAbility, ability);
aurelia.container.registerInstance(Ability, ability);
aurelia.start().then(() => aurelia.setRoot());
}
Read CASL and TypeScript to get more details about
Abilitytype configuration.
Majority of applications that need permission checking support have something like AuthService or LoginService or Session service (name it as you wish) which is responsible for user login/logout functionality. Whenever user login (and logout), we need to update Ability instance with new rules.
Let's imagine that server returns user with a role on login:
import { autoinject } from 'aurelia-framework';
import { Ability, AbilityBuilder } from '@casl/ability';
@autoinject
export class Session {
private token: string
constructor(private ability: Ability) {}
login(details) {
const params = { method: 'POST', body: JSON.stringify(details) };
return fetch('path/to/api/login', params)
.then(response => response.json())
.then((session) => {
this.updateAbility(session.user);
this.token = session.token;
});
}
private updateAbility(user) {
const { can, rules } = new AbilityBuilder();
if (user.role === 'admin') {
can('manage', 'all');
} else {
can('read', 'all');
}
this.ability.update(rules);
}
logout() {
this.token = null;
this.ability.update([]);
}
}
See Define rules to get more information of how to define
Ability
Then use this Session service in LoginComponent:
import { autoinject, bindable } from 'aurelia-framework';
import { Session } from '../services/Session';
@autoinject
export class LoginFormCustomElement {
@bindable email: string;
@bindable password: string;
constructor(private session: Session) {}
login() {
const { email, password } = this;
return this.session.login({ email, password });
}
}
To check permissions in any template you can use AbleValueConverter:
<div if.bind="'create' | able: 'Post'">
<a click.trigger="createPost()">Add Post</a>
</div>
You can read the expression in
ifas "if creatable Post"
Or with deprecated CanPipe:
<div *ngIf="'Post' | can: 'create'">
<a click.trigger="createPost()">Add Post</a>
</div>
CanValueConverter was deprecated because it is less readable and it was harder to integrate it with all type definitions supported by Ability's can method. That's why CanValueConverter has weaker typings than AbleValueConverter.
Custom attribute cannot be used to pass values into inputs of other components. For example, we need to enable or disable a button based on user's ability to create a post. With directive we cannot do this but we can do this with value converter:
<button disabled.bind="!('create' | able: 'Post')">Add Post</button>
Value converters in Aurelia are very good in terms of performance, they are not called if their arguments are not changed. Also they support signal bindings, so can be easily updated when you update Ability instance.
The package is written in TypeScript, so it will warn you about wrong usage.
It may be a bit tedious to use application specific abilities in Aurelia app because everywhere you inject Ability instance you will need to import its generic parameters:
import { Ability } from '@casl/ability';
import { autoinject } from 'aurelia-framework';
import { AppAbilities } from '../services/AppAbility';
@autoinject
export class TodoItemCustomElement {
constructor(private ability: Ability<AppAbilities>) {}
}
To make the life easier, instead of creating a separate type you can create a separate class:
import { Ability } from '@casl/ability';
type Actions = 'create' | 'read' | 'update' | 'delete';
type Subjects = 'Article' | 'User'
export type AppAbilities = [Actions, Subjects];
export class AppAbility extends Ability<AppAbilities> {
}
And register this class in Aurelia's container:
import { AppAbility } from './services/AppAbility';
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('@casl/aurelia'); // <-- add plugin
const ability = new AppAbility();
aurelia.container.registerInstance(PureAbility, ability);
aurelia.container.registerInstance(AppAbility, ability);
aurelia.start().then(() => aurelia.setRoot());
}
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on guidelines for contributing.
If you'd like to help us sustain our community and project, consider to become a financial contributor on Open Collective
See Support CASL for details
FAQs
Aurelia plugin for CASL which makes it easy to add permissions in any Aurelia apps
We found that @casl/aurelia demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.