npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sarfarajey/rbac-merge

v1.0.0

Published

Salesforce-style RBAC: profile baseline + additive permission-set overrides. Generic over role and feature names. Zero dependencies.

Downloads

85

Readme

@sarfarajey/rbac-merge

Tiny RBAC primitive shaped after the Salesforce Profile + Permission Set model:

  • A profile baseline — a static per-role table of granted capabilities, defined in code and shipped with the application.
  • Permission set overrides — per-user, additive grants typically loaded from a database.
  • Effective permissions = union of the two. Overrides can only add; never remove.

Generic over role and feature names. Zero dependencies.

Install

npm install @sarfarajey/rbac-merge

Define your roles and features in code

import type { RoleBaseline } from '@sarfarajey/rbac-merge';

type Role    = 'guest' | 'user' | 'admin';
type Feature = 'posts' | 'admin' | 'profile';

const baseline: RoleBaseline<Role, Feature> = {
    guest: {
        posts:   ['view'],
    },
    user: {
        posts:   ['view', 'create'],
        profile: ['view_own', 'edit_own'],
    },
    admin: {
        posts:   ['view', 'create', 'delete'],
        profile: ['view_own', 'edit_own', 'view_others'],
        admin:   ['view_dashboard', 'manage_users'],
    },
};

Check a capability

import { hasPermission } from '@sarfarajey/rbac-merge';

hasPermission<Role, Feature>('user', 'posts', 'create', { baseline });
// → true

hasPermission<Role, Feature>('user', 'posts', 'delete', { baseline });
// → false

hasPermission<Role, Feature>(null, 'posts', 'view', {
    baseline,
    defaultRole: 'guest',
});
// → true

Per-user overrides

A specific user may have extra grants stored in the database — pass them in:

const userOverrides = {
    posts: ['delete'],          // grant delete on posts
    admin: ['view_dashboard'],  // unlock the admin dashboard
};

hasPermission<Role, Feature>('user', 'posts', 'delete', {
    baseline,
    overrides: userOverrides,
});
// → true (granted via override)

Overrides add only — they cannot remove capabilities the baseline grants.

Resolved map

import { getPermissions } from '@sarfarajey/rbac-merge';

getPermissions<Role, Feature>('user', { baseline, overrides: userOverrides });
// {
//   posts:   ['view', 'create', 'delete'],
//   profile: ['view_own', 'edit_own'],
//   admin:   ['view_dashboard'],
// }

Plain merge

If you already have the role's baseline in hand and just want the merge:

import { mergePermissions } from '@sarfarajey/rbac-merge';

mergePermissions(baseline.user, userOverrides);

Security invariants worth knowing

  1. Unknown role → denied. If you call hasPermission('developer', ...) and 'developer' is not in your baseline, it is denied. It does not silently fall back to defaultRole. Only null / undefined use defaultRole. This matters when role strings come from untrusted sources (cookies, JWT claims): an attacker writing a bogus role name can never inherit guest's permissions.

  2. Adding a capability to the baseline takes effect immediately. No need to migrate per-user override records when you add posts.archive to the admin baseline — every admin gets it on the next deploy.

  3. Overrides cannot revoke. If you need to revoke a baseline capability, change the baseline. The data model is intentionally additive to avoid the "forgot to update the override" failure mode.

License

MIT