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

ponyfoo

v1.0.29

Published

Open-source blogging platform

Downloads

12

Readme

Pony Foo Build Status

Open-source blogging platform

Development

Merely install dependencies and run the application using npm start. The start command will compile and bundle all necessary assets, set up file watchers, as well as nodemon and browser-sync so that you're able to continuously develop.

npm install
npm start

Deployments

First off you'll need to download and install the awscli tool.

pip install awscli

Then configure it with your AWS credentials. Make sure to leave the default JSON format output as-is, the deployment scripts revolve around using jq to parse the awscli output.

aws configure

You'll probably want to create an instance on EC2. The command below will spin up a new instance, give it an IP address, and set it up for node and nginx. Note that the database server must be hosted separately. For this purpose I chose MongoLab as my DBaaS provider of choice, the free tier should suffice.

npm run launch

Configure it with it's private environment variables, which you should place in an .env file in the application root. The command below will push the .env file via rsync to the server and restart it, so make sure you only update environment variables when necessary.

npm run configure

Whenever you want to deploy, use the command below. It'll bump the version by a single patch digit and upload the diff since the last deployment. Uploading occurs via rsync, then nginx and node are hot-reloaded thanks to forever and recluster.

npm run deploy

You can then quickly access the deployed site on your favorite browser.

npm run open

If you run into trouble, you can ssh into the instance and ammend the situation by yourself.

npm run ssh

Usage

To access the production site visit ponyfoo.com, or use curl to get a plaintext edition.

curl -L -H "Accept: text/plain" ponyfoo.com/articles/last

License

MIT