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

casbin-knex-adapter

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

casbin-knex-adapter

Knex adapter for Casbin

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
120
decreased by-4.76%
Maintainers
1
Weekly downloads
 
Created
Source

Knex Adapter

Knex Adapter for Node-Casbin. Use this library for policy storage in Casbin.

For full database support list, go to the Knex documentation.

WARNING: This adapter has only been tested manually. It lacks automated tests, which will show up when I'll have time. If you want to use it in production - be careful.

Installation

npm install casbin-knex-adapter --save

or

yarn add casbin-knex-adapter

Example

const casbin = require('casbin');
const KnexAdapter = require('casbin-knex-adapter');

(async function() {
  // Create adapter
  const adapter = await KnexAdapter.newAdapter(knexOptions);
  // or pass a Knex instance
  // const adapter = await KnexAdapter.newAdapter(knexInstance);

  // Create casbin enforcer
  const enforcer = await casbin.newEnforcer('model.conf', adapter);

  // Load policy from DB
  await enforcer.loadPolicy();

  // Check permission
  if (enforcer.eforce('user', 'resource', 'read')) {
    // Do something
  }

  // Modify policy
  // await enforcer.addPolicy(...)
  // await enforcer.removePolicy(...)

  // Save policy to DB
  await enforcer.savePolicy();
})();

FAQs

Package last updated on 16 Apr 2019

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