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 🙏

© 2025 – Pkg Stats / Ryan Hefner

agile-mobile

v1.0.0-beta.2

Published

The agile-mobile is mobile ui components built on react. Focusing on agile development and based on simple design always look for extensibility and perfomance and ease.

Downloads

69

Readme

📦 安装

npm install agile-mobile
yarn add agile-mobile

🔨 使用

import { Button } from 'agile-mobile';

const App = () => (
  <>
    <Button color="primary">Hello Agile!</Button>
  </>
);

💄 开发环境

包含本地文档及示例展示。

yarn start

💍 目录结构

.
├── LICENSE
├── README.md
├── babel-transform-less-to-css.js  # babel插件(将.less替换为.css)
├── config                          # 文档配置(基于dumi)
│   ├── components.ts
│   └── config.ts
├── docs                            # 文档配置
├── dist                            # 文档构建后目录
├── gulpfile.js                     # 组件打包配置(基于gulp)
├── jest.config.js                  # 测试配置(基于jest)
├── lib                             # 组件打包后的目录
├── package.json
├── src                             # 源文件
│   ├── assets                      # 资源目录
│   ├── components                  # 组件目录
│   │   ├── button
│   │   ├── elastic-box
│   │   └── ...
│   ├── demos
│   ├── global                      # 全局配置
│   │   ├── global.less
│   │   ├── index.ts
│   │   └── theme.less              # 全局主题配置
│   ├── index.ts                    # 组件库入口
│   ├── tests                       # 测试入口
│   ├── typings                     # 辅助ts配置
│   └── utils                       # 工具
├── tsconfig.json
└── yarn.lock

🥷 组件结构

.
├── src
│   ├── components
│   │   ├── button
│   │   │   ├── README.md           # 说明(可中英文区分README.es.md、README.zh.md)
│   │   │   ├── button.tsx          # 组件主体
│   │   │   ├── PropsType.tsx       # 类型定义(定义在组件内则可选)
│   │   │   ├── demos               # 示例
│   │   │   │   └── index.tsx
│   │   │   ├── index.ts            # 入口
│   │   │   ├── styles              # 样式
│   │   │   │   └── button.less
│   │   │   └── tests               # 测试
│   |   │   │   └── button.test.tsx

License

Agile Mobile UI is MIT licensed, as found in the LICENSE file.