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

maple-blog

v1.0.7

Published

http://mapleliu.com

Readme

我的博客Demo

Build Status

本项目基于 React Redux Starter Kit 搭建。

学习资源: Starting out with react-redux-starter-kit

线上地址: mapleliu.com

运行项目

命令行(终端)执行

cd myBlog
yarn install
yarn start

浏览器打开 http://localhost:3000

常用的 script 列表

|npm run <script>|说明| |------------------|-----------| |start|编译更新 vendor.js 并在 localhost:3000 启动服务. HMR 打开.| |build|与 compile 相同,NODE_ENV 覆盖为 "production".(构建上线代码)| |compile|编译应用到磁盘 (~/dist).| |test|运行 Karma 的单元测试,并生成覆盖报告.| |lint|检查 .js 代码风格.| |lint:fix|检查风格,并修复能修复的错误. Read more on this.|

项目结构

.
│  .editorconfig                      # 代码缩进,换行等配置
│  .eslintignore                      # 不做代码风格检查的文件
│  .eslintrc                          # 代码风格检查配置
│  .gitignore                         #
│  package.json                       # npm 包配置
│  README.md                          #
│
├─build                               # 构建
├─dist                                # 打包结果目标目录
│
├─server                              # 开发时的本地 server
├─src                                 # 前端代码根目录
│  │  config.js                         # 共用的配置
│  │  index.html                        # 单页面入口,会打包到 dist/html
│  │  main.js                           # 前端 js 入口文件
│  │
│  ├─components                         # 共用的组件
│  ├─containers                         # 共用的容器
│  ├─layouts                            # 共用的布局组件
│  ├─middlewares                        # redux 的中间件
│  ├─routes                             # 页面路由
│  │  ├─index.js                          # 路由入口
│  │  ├─Dashboard                         # 路由模块
│  │  │  ├─index.js                       # 路由模块的入口
│  │  │  ├─components                     # 路由下的组件
│  │  │  ├─containers                     #  路由下的容器
│  │  │  └─modules                        # 路由下的模块
│  │  │
│  │  └─Other
│  │
│  ├─static                             # 前端静态文件
│  ├─store                              # Redux 的相关初始化
│  ├─styles                             # 共用的样式
│  └─util                               # 共用的工具
└─tests                                 # 测试