npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@onigeya/bpmn-editor

v0.1.1

Published

一个基于 Vue 3 开发的轻量级、可扩展的 BPMN 流程图编辑器组件

Readme

@onigeya/bpmn-editor

一个基于 Vue 3 开发的轻量级 BPMN 流程图编辑器组件。

特性

  • 🚀 基于 Vue 3 + TypeScript 开发
  • 📦 基于 bpmn-moddle 的 BPMN 2.0 标准支持
  • 🎨 使用 Element Plus 的美观 UI 组件
  • 🔌 基于 AntV X6 的图形编辑能力
  • 🛠 支持流程图的导入导出
  • 📋 内置属性面板,支持查看节点、连线和流程属性

技术栈

  • Vue 3 + TypeScript - 现代化的前端开发框架
  • Element Plus - 美观易用的 UI 组件库
  • AntV X6 - 专业的图编辑引擎
  • bpmn-moddle - BPMN 2.0 模型解析和序列化

安装

# NPM
npm install @onigeya/bpmn-editor

# Yarn
yarn add @onigeya/bpmn-editor

# PNPM
pnpm add @onigeya/bpmn-editor

使用方法

全局注册

// main.ts
import { createApp } from 'vue'
import BpmnEditor from '@onigeya/bpmn-editor'
import '@onigeya/bpmn-editor/dist/bpmn-editor.css'

const app = createApp(App)
app.use(BpmnEditor)
app.mount('#app')

组件中使用

<template>
  <BpmnEditor />
</template>

组件说明

BpmnEditor 组件是一个完整的 BPMN 流程图编辑器,包含以下功能:

  • 工具栏:提供流程图的导入导出功能
  • 画布:用于绘制和编辑流程图
  • 属性面板:用于查看和编辑节点、连线和流程属性

贡献指南

请查看 CONTRIBUTING.md 了解如何参与项目开发。

许可证

MIT