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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cure-ui

v0.0.2

Published

Simple implementation of react component library

Downloads

2

Readme

cure-ui

Coverage Status npm npm npm bundle size npm type definitions dumi NPM

易扩展的简易 React 组件库

install

npm

若想安装并写入package.json依赖包,请运行以下命令:

// 使用npm
npm install cure-ui @emotion/styled @emotion/react

// 使用yarn
yarn add cure-ui @emotion/styled @emotion/react

// 使用pnpm (推荐)
pnpm add cure-ui @emotion/styled @emotion/react

由于 cure-ui 需要编译所以无法提供 CDN 版本链接。

文件结构

  1. dumi 下的 docs 存放文档,使用 markdown 编写。dumi 官网:https://d.umijs.org/。
  2. example 文件夹存放开发调试的内容,大部分是直接调用各组件文件夹下写好的 example
  3. lib 存放 npm 包发布的内容
  4. src 存放源码

源码编写规范

  • 一个组件一个文件夹,index 进行默认导出
  • 每个组件文件夹应该有:
    • 类型声明文件
    • 样式文件
    • 代码文件
    • 测试文件
  • 组件统一在 src/index 下抛出。

技术栈

  • vite^4.0 脚手架 https://cn.vitejs.dev/
  • vitest https://cn.vitest.dev/ @emotion/jest https://emotion.sh/docs/@emotion/jest @testing-library/react https://testing-library.com/docs/react-testing-library/intro/ 进行测试
  • @emotion https://emotion.sh/docs/introduction 编写 css 样式,写法和 less 差不多,主要特点是很自由。
  • dumi https://d.umijs.org/ 写文档。

roadmap

  • [ ] 目前实现的组件写好测试
  • [ ] 完善 package.json,主要是发布相关的
  • [ ] vite 打包优化
  • [ ] typescript 类型声明文件合并
  • [ ] 写好文档