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

lw-cdp-ui

v1.6.12

Published

lw-ui是一套基于Vue.js的企业级中后台UI组件库,提供丰富的业务组件和工具,帮助开发者快速构建中后台管理系统。

Readme

lw-ui 组件库文档

项目简介

lw-ui是一套基于Vue.js的企业级中后台UI组件库,提供丰富的业务组件和工具,帮助开发者快速构建中后台管理系统。

主要特性

  • 🏗️ 丰富的业务组件:包含表单、表格、图表、流程设计等业务场景组件
  • 🎨 主题定制:支持灵活的主题配置和样式覆盖
  • 🚀 开箱即用:提供完整的安装指南和示例代码
  • 📦 按需加载:支持组件级按需引入
  • 🌍 国际化:内置多语言支持

快速开始

安装

npm install lw-cdp-ui
# 或
yarn add lw-cdp-ui

引入组件

// 全局引入
import lwCdpUi from 'lw-cdp-ui';
import 'lw-cdp-ui/dist/style.css';
Vue.use(lwCdpUi);

// 按需引入
import { lwTable, lwForm } from 'lw-cdp-ui';

使用示例

<template>
  <lw-table :data="tableData" :columns="columns" />
</template>

文档目录

docs/
├── components/          # 组件文档
│   ├── bi-chart/       # 图表组件
│   ├── flow/           # 流程设计器
│   ├── form/           # 表单组件
│   └── table/          # 表格组件
└── guide/             # 使用指南
    ├── theme.md       # 主题定制
    └── i18n.md        # 国际化

开发环境

  • Node.js 12+
  • Vue 2.6+
  • Webpack 4+
  • npm/yarn

构建项目

# 开发模式
npm run dev

# 生产构建
npm run build

# 文档构建
npm run docs:build

贡献指南

欢迎提交Pull Request或Issue。在提交前请确保:

  1. 通过ESLint检查
  2. 添加相应的单元测试
  3. 更新相关文档

许可证

MIT © 2025 lw-ui团队