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

m-hui

v1.0.5

Published

基于 React 开发的移动端轻量 UI 库. 结合 HTML5, CSS3, ES6, React15 的优势, 吸收 [react-weui](https://github.com/weui/react-weui), [amazeui-react](https://github.com/amazeui/amazeui-react) 的 UI 控件.

Downloads

13

Readme

HUI Mobile Build Status npm version

基于 React 开发的移动端轻量 UI 库. 结合 HTML5, CSS3, ES6, React15 的优势, 吸收 react-weui, amazeui-react 的 UI 控件.

立即体验

m-hui

http://henryhyn.github.io/m-hui

立即使用

安装依赖

npm install m-hui --save

在需要组件的页面, 通过如下解构赋值的方式, 引入需要的页面组件.

import { Page, Button } from 'm-hui';

创建 HUI Mobile APP 例子, 参见 https://github.com/henryhyn/m-hui-app

贡献代码

先决条件

  • 安装 node, 至少 v0.12.7.
  • 安装 WebStorm 集成开发环境.

编写代码

克隆代码到本地, 然后进入项目目录, 执行如下命令就可以启动开发服务器.

npm start

通过 http://localhost:9999 查看页面效果. 开发服务器启动了热加载功能, 意味着, 你的任意改动都会自动在浏览器中刷新, 方便你查看效果.

源码结构

  • less 存放公共样式, 需要在 style.less 中引用.
  • components 存放 UI 组件, 需要在 index.js 中引用.
  • pages 存放样式页面, 需要在 app.js 中配置路径.

发布代码

执行如下命令就可以生成演示项目的发布版.

npm run build