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

stong-ui

v2.1.1

Published

### 介绍

Readme

stong-ui

介绍

基于 Ant Design 使用 React + TypeScript 编写的 UI 组件库

使用

import { Button } from 'stong-ui';
import 'stong-ui/build/lib/index.css';

ReactDOM.render(<Button></Button>, mountNode);

按需加载

stong-ui 的每个组件都被打包至单独的目录下,可以支持按需加载

import Button from 'stong-ui/build/lib/components/Button'
import 'stong-ui/build/lib/components/Button/index.css'

之后便可以按如下使用

import { Button } from 'stong-ui';

TypeScript

stong-ui 完全使用 TypeScript 编写,并提供了完整的类型定义文件

工程分支

具体分支流程参照 branch.png

| 分支名称 | 描述 | | -------------------------------------- | ------------------------------------------------ | | dev | 预发布分支 | | master | 线上分支 | | v1.x,v2.x ... | 版本分支,1.x 使用 Ant Design4.x 代码, 以此类推 | | AntdUI | Antd 二开组件分支 | | AntdUI5,AntdUI6 ... | Antd 二开组件版本分支 | | hotfixAntdUI5, hotfixAntdUI6 ... | Antd 二开组件 代码开发分支 | | AntDesign5, AntDesign6... | 使用的 AntDesign 版本分支 | | hotfixAntDesign5, hotfixAntDesign6 ... | 修改 AntDesign 代码分支 | | 自定义业务分支 | 业务组件开发分支 |

当需用旧版本AntdUI开发业务组件,可从旧版本分支(v1.x) checkout 出业务分支