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

callipyge-core

v0.10.1

Published

Callipyge is a simple tool to help you build and maintain beautiful backends.

Readme

README

Callipyge is a simple tool to help you build and maintain beautiful backends.

Requirements

Tools

This readme uses yarn (instead of npm). To install it:

npm install --global yarn

Node 6

We use node 6.x for this project. If you don't have it installed, I recommend https://github.com/mklement0/n-install to grab n, the Node.js version manager.

Services

This web engine is designed to work with two online services:

  • now.sh as an https web host for node (and docker)
  • Cloudant to host the CouchDB database

Both offer free (but limited) accounts.

now.sh

now.sh offers the simplest node https hosting possible. Paid accounts are about 15$/month and let you use your own domain names and hide your source files (otherwise they are public).

Make sure you have the now-cli installed:

npm install --global now

Cloudant

Cloudant offers a complete CouchDB service (including geo and fulltext search). Usage is measured and billed monthly if it's 50$ or over.

Step by step

cd [somewhere]
mkdir my-project # or whatever name you choose
cd my-project # or whatever name you choose
yarn init -y
yarn add callipyge-core
node_modules/.bin/callipyge init
yarn start

You'll want to rerun init if you upgrade callipyge-core:

yarn callipyge init

Customizing

Templates

You'll find templates/ and templates/partials/ is populated with symlinks to relevant files. Feel free to replace them as needed.

CSS / Sass

We use Foundation and Sass to style the site. You'll find symlinks to the original files in scss/ which you can edit at will.

Use yarn sass to regenerate the css file found in the public/css/ directory.

Security

Notice a new .env file in your project root. Make sure there's also a .env line in your .gitignore file to prevent it from being shared. This .env file contains your cloudant username and password.