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

blogo

v0.1.0

Published

Smart Blog Generator

Downloads

45

Readme

BLOGO (轻量级博客生成工具)

目录

功能

  1. 快速创建博客,并使用MarkDown写文章
  2. 自定义主题(目前仅支持Jade)
  3. 一条命令同步到博客目的地(目前仅支持git)
  4. 拥有专门的文章demo生成工具,方便在文章中插入示例

下载及安装

  1. npm install blogo -g

使用

  1. blogo init && blogo start

命令集

  1. blogo init (dirname) || blogo i

    创建博客

  2. blogo new (articleName) || blogo n

    创建一篇新文章

    blogo new -s

    创建一篇新文章并且开启服务

  3. blogo sample (sampleName)

    创建一个新示例

  4. blogo start || blogo s

    创建一个本地web服务用来预览博客

  5. blogo deploy || blogo d

    提交博客

  6. blogo generate || blogo g

    手动编译md到blog

  7. blogo remove (articleName) || blogo r

    删除一篇文章

特殊标记

{-demo(demoName)-}

在MarkDown中使用此标记用于在当前位置插入创建好的demo示例

开发数据

{
	"post":{
		"articles":[{
			"title":"article name",
			"date":"create time",
			"year":"create year",
			"month":"create month",
			"day":"create day",
			"time":"create time without date info",
			"desc":"article description",
			"html":"article detail html"
		},...],
		"tags":{
			"tagName":["articles" like post.articles]
		},
		"time":{
			"year":{
				"list":["articles" like post.articles],
				"month":{
					"list":["articles" like post.articles],
					"day":{
						"list":["articles" like post.articles],
						"articlesName":post.articles
					}
				}
			}
		}
		//article数据仅存在于article页面
		"article":{
			"title":"article name",
			"date":"create time",
			"year":"create year",
			"month":"create month",
			"day":"create day",
			"time":"create time without date info",
			"desc":"article description",
			"html":"article detail html"
		}
	},
	"config":{
		"resourceUrl":"your blog url + /resource"
		"social":{
			"twitter":"",
			"github":"",
			...
		},
		"email":"[email protected]",
		"author":"xx",
		"blogName":"blog title",
		"disqusName":"xx"
	}
}

Bugs Report

https://github.com/kevin14/blogo/issues

TODO

  1. 增加对于其他模版引擎的支持
  2. 增加其他repo的支持

授权协议

Released under the MIT, BSD, and GPL Licenses