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

kujo

v1.1.15

Published

Command line static site generator with modular handlebars themes

Readme

kujo

kujo is a simple Node.JS static site generator that supports single file modular themes written in handlebars.

Much like jekyll, it provides a single command CLI tool to build Markdown + YAML frontmatter article files into ready to deploy static websites.

Compared to bulky dynamically generated sites, a static site made with kujo has some advantages:

  • is super lightweight and loads super fast
  • fits on all your screens (and it's mobile first)
  • looks the same in all your browsers
  • accessible to everyone that visits your site
  • legible and gets your point across
  • can be hosted for free with github pages

It was inspired by the the mu CSS framework, a classless 1 kb CSS framework that can be easily extended and customised.

kujo's website was built with kujo itself, check out the repo.


website - getting started


kujo builds Markdown + frontmatter assets into ready to deploy HTML5 websites. It provides functions to manage and iterate over directories of articles and it provides a small but powerful view engine based on handlebars.

Strive for simplicity:

By now, the source code counts for ~500 lines of code, including view templates, the CLI app and the main library. kujo tries to use the most out of ES6 and modern Node.JS features such as asynchronous functions, fs/promises and template literals.

Strive for customisation:

By default, kujo spits out CSS-less and class-less HTML files. To tweak your website, you can add a custom CSS theme file, or you can tweak and replace the views that are used to generate the HTML build. By extending the view templates, you can have fine grained control over every element of your site.

kujo also provides options to extend the Markdown parser with features such as syntax highlighting, text beautification and inline HTML. Support for custom blocks is coming soon!


Installing

kujo requires Node.JS >= 10 and npm installed on your system.

To use the CLI interface install kujo globally:

npm install -g kujo

To check if you have installed kujo correctly, you can run this command which will display the usage help :

kujo --help

You may want to download the kujo source code manually. To do so run:

git clone https://github.com/0x0f0f0f/kujo

After downloading the repo, you can install the dependencies by running

cd kujo
npm install

Usage

Check out the Getting Started guide, or take a look at some open source websites made with kujo:

If you'd like to add your kujo website to this list, open a PR.


Roadmap

  • [x] Base library
  • [x] Native filesystem promises (Node >=10)
  • [x] Internal frontmatter parser
  • [x] CLI interface
  • [x] Github Pages Website
  • [ ] API documentation
  • [ ] Custom blocks

License

kujo is distributed under the MIT license

Contributing

Pull requests are welcome! If you encounter any problem with this repository, you can open an issue or you can open a pull request.