mongodb-casbin-adapter
v2.0.0
Published
MongoDB adapter for node casbin.
Downloads
9
Readme
MongoDB Adapter for Node Casbin
This is a MongoDB adapter for Node Casbin. It provides policy storage and management using MongoDB for Casbin.
Features
- Implements
FilteredAdapter
,BatchAdapter
, andUpdatableAdapter
interfaces - Automatic index creation for optimized performance
- Timestamp support for policy rules (createdAt and updatedAt)
Installation
npm install mongodb-casbin-adapter
Usage
import { newEnforcer } from 'casbin';
import { MongoAdapter } from 'mongodb-casbin-adapter';
async function setupEnforcer() {
const adapter = await MongoAdapter.newAdapter({
uri: 'mongodb://localhost:27017',
database: 'casbin',
collection: 'policies',
dropCollectionOnManualSave: false,
/* Default is false, set to true if you want to drop the collection when savePolicy is called */
options: {
/* MongoDB client options */
},
});
const enforcer = await newEnforcer('path/to/model.conf', adapter);
// Now you can use the enforcer
const allowed = await enforcer.enforce('alice', 'data1', 'read');
console.log(allowed ? 'Allow' : 'Deny');
}
setupEnforcer();
License
This project contains code with the following licenses:
- Portions © Rex Isaac Raphael, 2019, licensed under the MIT License.
- Modifications © Nathan Bhanji, 2024, licensed under the Apache License 2.0.