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

cu-lowcode-userguide-plugin

v0.1.1

Published

lowcode-plugin-template

Readme

cu-lowcode-plugin-template

低代码插件开发模板 lowcode-plugin-template


开发

环境准备

启动

npm i & npm start

调试

启动后直接打开下面链接,会自动注入插件,可以进行调试 支持直接使用官方 demo 项目:https://lowcode-engine.cn/demo/demo-general/index.html?debug

alt text

开发注意事项

请使用fusion来开发插件,请勿使用antd。

发布

先修改build.umd.plugin.js 中的library name

发布npmjs

npm run pub

使用

方式一:注册插件

import { plugins } from '@alilc/lowcode-engine';
import LowcodePluginTemplate from 'cu-lowcode-plugin-template';

// 注册到引擎
plugins.register(LowcodePluginTemplate);

方式二:从搭建中心添加

低代码sdk搭建中心->配置管理->依赖管理->添加插件 搭建中心引入

规范

1、插件面板的配置

在src文件夹下的index.tsx中可以对插件面板的一些属性进行配置, 插件面板宽度推荐使用默认值:600px 插件的图标大小需使用30px宽*30px高的svg,并将svg内容替换src文件夹下icon.tsx中的svg内容

2、插件的使用指南

在模板中的插件面板底部,可以添加插件的使用指南链接,帮助使用者更好的使用插件。