Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
empower-permission
Advanced tools
Given a permission set and a request return a permission token.
Given a permission set and a request return a permission token.
it will look in the PermissionMap
for for a url that matches the given URL.
If found, then it will return the token string associated with that path.
Otherwise, it will return the GeneralAccessToken
or '*'.
Paths will be parsed using the pathToRegexp
module.
g
Example Token Strings:
'token:entity:create'
'token:entity:update'
'token:entity:sub-entity:read'
This is a map of path strings to PermissionTokens
Example Map:
{
"/url/token/entity/:entityId": "url:token:entity",
"/url/token/:tokenId": "url:token",
"/url/token": "url:token:list",
"/url/token/:tokenId/action": "url:token:action"
}
var PermissionMap = require('empower-permission');
var map = PermissionMap.fromJson({
"/url/token/entity/:entityId": "url:token:entity",
"/url/token/:tokenId": "url:token",
"/url/token": "url:token:list",
"/url/token/:tokenId/action": "url:token:action"
}}
var token = map.getToken("/url/token/entity/1234");
console.log(token); // will output "url:token:entity"
var PermissionMap = require('empower-permission');
var map = PermissionMap();
map
.addToken("/url/token/entity/:entityId", "url:token:entity")
.addToken("/url/token/:tokenId", "url:token")
.addToken("/url/token", "url:token:list")
.addToken("/url/token/:tokenId/action", "url:token:action")
var token = map.getToken("/url/token");
console.log(token); // will output "url:token:list"
FAQs
Given a permission set and a request return a permission token.
The npm package empower-permission receives a total of 7 weekly downloads. As such, empower-permission popularity was classified as not popular.
We found that empower-permission demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.