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

imuim

v0.0.1-beta.3

Published

another mui, from imweb team

Readme

IMWeb · MUI

  • React & Redux
  • 专注管理后台
  • 务必保证本地 node 在 4.2 版本之上,拥抱 es6
  • 提交代码必须拉分支
  • 发布周期,每周二、每周五

使用

安装

npm install mui --save
npm install mui@beta --save # beta 版本,最新特性,但不稳定

引入

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

// 或者按需引用,打包的时候只会打包 tab
import Tab from 'mui/dist/tab/index';

预览

npm run preview

开发

  • 分支,主干是随时会发布到 npm 的,贡献组件务必拉分支

  • .editorconfig,请让自己的编辑器支持这个

  • wiki请仔细阅读

  • 规范eslint 和 sasslint 必须验证通过

  • 构建

    • fis3
    • fis3-hook-commonjs
    • fis3-hook-node_modules
    • fis-parser-node-sass
    • fis3-postprocessor-extras_uri
    • fis3-deploy-replace
    • fis3-postpackager-loader
    • fis3-hook-relative
    • fis3-server-imweb
  • 项目目录

external 一些和 ui 无关的资源
mock 开发过程中可能需要模拟一些数据 [文档](http://fis.baidu.com/fis3/docs/node-mock.html)
mui 静态站点的目录,生成站点的时候出现
dist 编译后的文件目录,发布到 npm 时出现
scripts 构建相关的脚本
  • 组件目录

所有文件都是 .jsx

tab/
  demo/    必须
    index.html   必须,可以在上面 dev ,顺边做为 demo ,这个会自动生成到 demo 首页
  style/   必须,组件样式
  lib/     非必须,可以用 src 什么的替代
  index.jsx   必须,入口文件
  • 样式

类名必须以 im- 开头。

.im-tab {
  // 头部
  &-hd {
    @extend %clearfix;
    font-size: 16px;
    background: #fff;
  }
}
  • 调试
npm run dev

http://127.0.0.1:8080/components/tab/demo/index.html   | tab 的访问路径

构建会自动在 demo.html 文件中加入 mod.js 和样式等资源。
  • 单元测试
npm run test
  • 发布到 npm
npm run pub