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

wheaty

v0.2.4

Published

JS-Git based application hosting platform

Downloads

21

Readme

Wheaty

JS-Git based application hosting platform

Development Usage

The easiest way to use this is with the wheaty CLI tool. To install this, simply do:

> npm install -g wheaty

Then when you want to test a site, just launch it by git url or path to local bare git repo.

(Hint, the tedit chrome app can edit bare repos on the local hard-disk)

> wheaty git://github.com/creationix/creationix.com.git

Then open your browser to http://localhost:8080/ to see the site.

You override the port with the PORT environment variable. The git branch can be changed with an extra argument.

> wheaty git://github.com/creationix/blog.git refs/tags/current

Production Usage

The wheaty-group tool can be used to create an instant git based PaaS. Most the creationix.com family of sites are running using this on a Rackspace server.

My production configs were at the time of writing are:

var pathJoin = require('path').join;
var jsRuntime = require('wheaty-js-runtime');
module.exports = {
  port: 8002,
  user: "tim",
  group: "tim",
  cacheDir: pathJoin(__dirname, "../git"),
  sites: {
    "luvit.io": {
      url: "[email protected]:luvit/luvit.io.git",
      runtimes: { js: jsRuntime },
    },
    "tedit.creationix.com": {
      url: "[email protected]:creationix/tedit.git",
      root: "build/web",
      runtimes: { js: jsRuntime },
      ssl: true,
    },
    "creationix.com": {
      url: "[email protected]:creationix/creationix.com",
      runtimes: { js: jsRuntime },
      ssl: true,
    },
  }
};

And my play sites are:

var pathJoin = require('path').join;
var jsRuntime = require('wheaty-js-runtime');
module.exports = {
  port: 8001,
  user: "tim",
  group: "tim",
  cacheDir: pathJoin(__dirname, "../git"),
  sites: {
    "dukluv.io": {
      url: "[email protected]:creationix/dukluv.git",
      root: "www",
      runtimes: { js: jsRuntime },
    },
    "conquest.creationix.com": {
      url: "https://github.com/creationix/conquest.git",
      runtimes: { js: jsRuntime },
    },
    "exploder.creationix.com": {
      url: "https://github.com/creationix/exploder.git",
      runtimes: { js: jsRuntime },
    },
    "clone-test.creationix.com": {
      url: "https://github.com/creationix/clone-test.git",
      runtimes: { js: jsRuntime },
    },
    "creator.creationix.com": {
      url: "https://github.com/creationix/creator.git",
      root: "www",
      runtimes: { js: jsRuntime },
    },
    "desktop.creationix.com": {
      url: "https://github.com/creationix/tedit.git",
      ref: "refs/heads/minimal",
      root: "build/minimal",
      runtimes: { js: jsRuntime },
    },
  }
};