# ruleengine-editor **Repository Path**: sync-github/ruleengine-editor ## Basic Information - **Project Name**: ruleengine-editor - **Description**: 规则引擎编辑器 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/ruleenginejs/ruleengine-editor - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 2 - **Created**: 2021-11-01 - **Last Updated**: 2025-04-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ruleengine-editor > Pipeline editor made in node graph written in Vue 3.0 ## Installation ```bash npm install @ruleenginejs/ruleengine-editor ``` Use [tailwindcss](https://github.com/tailwindlabs/tailwindcss) (for reset style) ```bash npm install tailwindcss ``` In your styles ```css @import "tailwindcss/base"; ``` Add [codicons](https://github.com/microsoft/vscode-codicons) ```bash npm install @vscode/codicons ``` In your code ```javascript import "@vscode/codicons/dist/codicon.css" ``` ## Usage ```javascript import { createApp } from 'vue' import App from './App.vue' import RuleEngineEditor from "@ruleenginejs/ruleengine-editor" import "@ruleenginejs/ruleengine-editor/dist/ruleengine-editor.css" import "@ruleenginejs/ruleengine-ui/dist/dark.theme.css" const app = createApp(App) app.use(RuleEngineEditor) app.mount('#app') ``` In your templates ```html ``` ## License Licensed under the [MIT License](./LICENSE).