Casbin-editor is a web-based Casbin model and policy editor. It's based on Next.js + TypeScript.
Use the Casbin-editor to write your Casbin model and policy in your web browser. It provides functionality such as syntax highlighting and code completion, just like an IDE for a programming language.
Try it at either:
- Casbin official website: https://casbin.org/editor
- Our standalone GitHub pages: https://editor.casbin.org
Casbin-editor is a pure frontend Javascript project. It uses node-casbin to perform policy enforcement. It's notable that node-casbin can be used either in frontend Javascript or Node.js.
This project can be viewed as an example for using node-casbin in the browser.
yarn install
yarn dev
Open browser: http://localhost:3000/
yarn build
# Make sure port 3000 is not in use
yarn start
Open browser: http://localhost:3000/
This project supports being built as an Electron app:
yarn install
yarn dist