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

qjzy-flow-vue

v1.0.1

Published

Custom fork of @tinyflow-ai/vue for QJZY project

Readme

qjzy-flow-vue

自定义 fork 版本的 @tinyflow-ai/vue,用于 QJZY 项目。

📦 包信息

  • 包名: qjzy-flow-vue
  • 版本: 1.0.0
  • npm 地址: https://www.npmjs.com/package/qjzy-flow-vue
  • 许可证: LGPL-3.0-or-later

🚀 安装

pnpm add qjzy-flow-vue

📖 使用

import { Tinyflow } from 'qjzy-flow-vue';
import type { CustomNode } from 'qjzy-flow-vue';
import 'qjzy-flow-vue/dist/index.css';

🔧 开发维护

目录结构

tinyflow-vue-custom/
├── dist/              # 构建产物
│   ├── index.js       # ES Module
│   ├── index.umd.js   # UMD 格式
│   ├── index.d.ts     # TypeScript 类型定义
│   └── index.css      # 样式文件
├── package.json       # 包配置
└── LICENSE           # 许可证文件

修改代码

由于这是从 npm 下载的编译后的包,如果需要修改源码:

  1. 获取原始源码:

    git clone https://github.com/tinyflow-ai/tinyflow
    cd tinyflow/packages/vue
  2. 修改源码并构建:

    pnpm install
    pnpm build
  3. 复制构建产物到本项目:

    cp -r dist/* D:/work/qjzy/tinyflow-vue-custom/dist/

发布新版本

# 1. 进入包目录
cd D:\work\qjzy\tinyflow-vue-custom

# 2. 更新版本号
npm version patch  # 1.0.0 -> 1.0.1 (小版本)
npm version minor  # 1.0.0 -> 1.1.0 (中版本)
npm version major  # 1.0.0 -> 2.0.0 (大版本)

# 3. 发布到 npm
npm publish --access public

# 4. 在主项目中更新
cd D:\work\qjzy\qjzy-cloud-vben\apps\web-antd
pnpm update qjzy-flow-vue

npm Token 管理

Token 位置: 已配置在 npm 全局配置中

查看配置:

npm config list

Token 过期后重新配置:

npm config set //registry.npmjs.org/:_authToken=新的Token

生成新 Token:

  1. 访问: https://www.npmjs.com/settings/npm_kaikai/tokens
  2. 点击 "Generate New Token"
  3. 选择 "Granular Access Token"
  4. 配置:
    • Token name: qjzy-publish
    • ✅ 勾选 "Bypass two-factor authentication"
    • Packages: "Read and write" + "All packages"
    • Expiration: 365 days
  5. 复制 Token 并配置

📝 版本历史

1.0.0 (2026-01-11)

🔗 相关链接

  • 原始包: @tinyflow-ai/vue
  • 原始仓库: https://github.com/tinyflow-ai/tinyflow
  • 主项目: D:\work\qjzy\qjzy-cloud-vben

⚠️ 注意事项

  1. 许可证合规: 本包继承自 @tinyflow-ai/vue 的 LGPL-3.0 许可证,请遵守相关条款
  2. 版本同步: 定期检查上游 @tinyflow-ai/vue 的更新
  3. 不要删除: 本目录包含包的源码,删除后无法重新发布
  4. 备份 Token: npm Token 过期后需要重新生成

📧 联系方式