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

ked-pc

v1.0.0-beta

Published

Beike Component Based On ke-design

Readme

贝壳 B 端基础组件库

ked 是基于 Ke Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。

ked和antd

ked在antd的基础上做了二次开发,组件的api和antd3+版本保持一致,交互样式遵循的是ke Design的设计规范。 目前主要服务于贝壳内部,贝壳同学可以通过内网访问ked官网查看组件用法。

使用安装

npm install --save @ke/ked

使用示例

import { DatePicker } from '@ke/ked';
ReactDOM.render(<DatePicker />, mountNode);

引入全量样式:

import '@ke/ked/dist/ked.css';

按需加载

使用 babel-plugin-import

import { Button } from '@ke/ked'

配置 .babelrc 或者 babel-loader

{
  "plugins": [
    ["import", { "libraryName": "@ke/ked", "style": true }]
  ]
}

然后只需从 ked 引入模块即可,无需单独引入样式。等同于下面手动引入的方式。

import { DatePicker } from '@ke/ked';

手动引入

import DatePicker from '@ke/ked/es/date-picker'; // 加载 JS
import '@ke/ked/es/date-picker/style';// 加载 LESS

使用全量的 css 和 js 文件

  1. js 文件 @ke/ked/dist/ked.min.js
  2. css 文件 @ke/ked/dist/ked.min.css

自定义主题

自定义主题需要用到 less 变量覆盖功能,可以利用了 less-loadermodifyVars 来进行主题配置,变量和其他配置方式可以参考 配置主题 文档。

开发指南

本地启动服务

需要先编译一下构建脚本(只需执行一次)

npm run compile:build

启动本地服务 需要先编译一下构建脚本

npm run start

本地构建打包

需要先编译一下构建脚本(只需执行一次)

npm run compile:build

本地构建

// 本地构建产物
npm run build:lib

// 本地构建站点
npm run build:site

License

MIT License