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

@lynkit/ui

v0.3.0

Published

React UI Component Library

Downloads

100

Readme

@lynkit/ui

React UI 组件库,提供了一套高质量的基础 UI 组件。

特性

  • 🎨 Design Tokens - 基于 CSS Variables 的设计令牌系统
  • 🌓 主题切换 - 支持亮色/暗色/跟随系统三种主题模式
  • 📦 双格式输出 - 同时支持 ES Modules 和 CommonJS
  • 🛡 TypeScript - 使用 TypeScript 开发,提供完整的类型定义
  • 测试覆盖 - 核心组件 100% 测试覆盖

安装

npm install @lynkit/ui
# or
yarn add @lynkit/ui
# or
pnpm add @lynkit/ui

快速开始

import { ConfigProvider, Button, Input, Select } from '@lynkit/ui';
import '@lynkit/ui/styles.css';

function App() {
  return (
    <ConfigProvider theme="light">
      <Button type="primary">按钮</Button>
      <Input placeholder="请输入" />
      <Select options={[{ label: '选项', value: '1' }]} />
    </ConfigProvider>
  );
}

主题切换

基础用法

import { ConfigProvider, Button } from '@lynkit/ui';
import '@lynkit/ui/styles.css';

// 亮色主题(默认)
<ConfigProvider theme="light">
  <Button>亮色主题</Button>
</ConfigProvider>

// 暗色主题
<ConfigProvider theme="dark">
  <Button>暗色主题</Button>
</ConfigProvider>

// 跟随系统
<ConfigProvider theme="system">
  <Button>跟随系统</Button>
</ConfigProvider>

动态切换

import { ConfigProvider, Button, useConfig } from '@lynkit/ui';
import '@lynkit/ui/styles.css';

function ThemeSwitcher() {
  const { theme, setTheme, resolvedTheme } = useConfig();

  return (
    <div>
      <p>当前主题: {resolvedTheme}</p>
      <Button onClick={() => setTheme('light')}>亮色</Button>
      <Button onClick={() => setTheme('dark')}>暗色</Button>
      <Button onClick={() => setTheme('system')}>跟随系统</Button>
    </div>
  );
}

function App() {
  return (
    <ConfigProvider>
      <ThemeSwitcher />
    </ConfigProvider>
  );
}

按需导入

方式一:统一导入(推荐)

import { Button, Input } from '@lynkit/ui';
import '@lynkit/ui/styles.css';

方式二:路径导入

import Button from '@lynkit/ui/es/button';
import Input from '@lynkit/ui/es/input';
import '@lynkit/ui/styles.css';

组件列表

| 组件 | 说明 | | -------------- | ------------ | | Button | 按钮组件 | | Input | 输入框组件 | | Select | 选择器组件 | | ConfigProvider | 全局配置组件 |

API

ConfigProvider

| 参数 | 说明 | 类型 | 默认值 | | --------- | -------- | ------------------------------- | --------- | | theme | 主题模式 | 'light' \| 'dark' \| 'system' | 'light' | | prefixCls | 类名前缀 | string | 'lyn' |

useConfig

const { theme, resolvedTheme, prefixCls, setTheme } = useConfig();

| 返回值 | 说明 | 类型 | | ------------- | -------------- | ------------------------------- | | theme | 当前主题设置 | 'light' \| 'dark' \| 'system' | | resolvedTheme | 实际生效的主题 | 'light' \| 'dark' | | prefixCls | 类名前缀 | string | | setTheme | 切换主题方法 | (theme: ThemeMode) => void |

本地开发

# 安装依赖
pnpm install

# 开发模式
pnpm dev

# 构建
pnpm build

# 运行测试
pnpm test

浏览器支持

  • Chrome >= 87
  • Firefox >= 78
  • Safari >= 14
  • Edge >= 88

许可证

MIT