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

micblog

v2.0.3

Published

静态博客系统

Readme

#Micblog 静态博客系统 NPM Version NPM Downloads

micblog项目Blog地址:http://micblog.coding.io/
代码托管: Github
国内镜像: coding

##目录

###介绍 micblog是基于Node.js的静态博客系统。
模板采用Handlebars,同时支持Markdown语法进行写作。
micblog的目标是去除一切不必要的功能,让用户可以专注于写作而非复杂的配置与生成动作。

###如何安装

  1. 安装node.js
    确认是否安装完成
node -v

显示版本系信息
2. 安装npm (新版node已经集成npm无需独立安装)
确认是否安装完成

npm -v

显示版本系信息
3. 安装Micblog

npm install -g micblog
micblog -v

显示版本系信息

版本信息显示正确即安装完成

###如何创建网站

micblog create

或者

micblog init

init与create拥有相同功能,从1.2.0版本开始加入,并且在生成完后自动执行build命令

在当前路径生成一个blog文件夹并包含必要的默认配置信息

###如何写作

  1. articles下新建Markdown格式的文件以Markdown语法写作
  2. Markdown文件第一行默认约定为以#开头的一级标题
  3. 在config/articles.json中可手动修改文章基本信息

###如何生成网站

micblog build

在当前路径blog文件夹中生网站,所有生成结果保存在blog/release文件夹中

###如何预览网站

micblog test

启动浏览器打开 http://localhost:8001/ 可浏览网站效果

###如何免费部署个人站点
请参考micblog 部署到coding.net

###如何安装插件 请参考项目博客#插件

###如何更新版本

npm update -g micblog
micblog update

将micblog更新至最新版本