Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

manacle

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

manacle

Lightweight ACL for Node.js and the browser

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

manacle

Manacle is a lightweight ACL implementation for Node.js and the browser.

Example

Create a new ACL:

var acl = manacle.create();

Define some rules:

var user = { ... };

acl.allow('read', 'post');

if (user) {
    acl.allow('create', 'post');
    acl.allow(['update', 'delete'], 'post', function(post) {
        return post.user === user;
    });
    
    if (user.admin) {
        acl.allow('*', 'post');
    }
    
    if (user.blocked) {
        acl.deny(['create', 'update', 'delete'], 'post');
    }
}

Check various rules:

var post = { ... };

// `true` for users who are not blocked
acl.allowed('create', 'post');

// `true` for all users (the given post object is ignored
// and unnecessary since there is no condition defined)
acl.allowed('read', 'post', post);

// `true` for users who are not blocked and either own
// the post or are an admin
acl.allowed('update', 'post', post);
acl.allowed('delete', 'post', post);

// `true` (undefined rules are denied by default)
acl.denied('foo', 'bar');

Note that the order in which the rules are defined matters as each newly defined rule takes precedence over past rules.

Download

Releases are available on GitHub or via NPM.

npm install manacle

Development: manacle.js

Production: manacle.min.js

API

allow(actions, subjects, condition)
deny(actions, subjects, condition)

Allow (or deny) the specified action(s) and subject(s), optionally only if the given condition holds.

Arguments:

  • actions - string or array of strings
  • subjects - string or array of strings
  • condition - function (optional)
allowed(action, subject, ...)
denied(action, subject, ...)

Check if the specified action(s) and subject(s) are allowed (or denied), optionally checking a condition against any extra arguments.

Arguments:

  • action - string
  • subject - string
  • additional arguments passed to condition function

FAQs

Package last updated on 23 Feb 2012

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc