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

oiu

v0.0.1

Published

move money to support open-source

Readme

README

[![npm][npm-image]][npm-url] [npm-image]: https://img.shields.io/npm/v/oiu.svg [npm-url]: https://npmjs.org/package/oiu

oiu is a command line application that allows you to send cryptocurrency to software packages packages.

A package author defines oiu.config.js in their root directory which handles payments. They can direct funds to Ethereum addresses or to other packages they depend on.

example gif

Table of Contents

Getting Started

You can install oiu with npm i -g oiu or just use npx oiu when using it.

Package Authors

If you want to set up your package to receive payments you will need to create an oiu.config.js file in your root directory. This file exports a function that takes a amount and returns an array of object defining how that amount is split up.

You can go pretty wild here, but here's a simple example to get you started

module.exports = (amount) => {
  return [
    {
      to: {
        address: ${YOUR ADDRESS HERE},
        name: ${YOUR NAME HERE}
      },
      amount: amount
    },
    ]
}

Don't have an Ethereum Wallet?

You can create a wallet with oiu init

Dependencies

If you depend on oiu, and would like to send us something like 1% of funds donated to you, simply add something this to your function! (remember to remove the 1% from else where, you can't disperse more than was put in)

    {
      to: {
        name: 'oiu',
      },
      amount: amount/100
    }

Package Users

If you want to send to a package you depend on, it's as simple as running npx oiu pay [package-name]

This will guide you setting up an Ethereum account

Contributing

We are open for any and all contributions!

Things that could use work:

  1. All text content everywhere in the app! Language is hard, come help us good it
  2. CLI Options! Have something you want to do? Basically every command so far has default options that are limiting, help us expand what we can do
    • Deal with passing in parameters like an Ethereum Wallet file, or an amount to do
  3. Automated generators! Writing those oiu.config.js files is pretty annoying. But It's Just Javascript(tm) so we can write things to make this easier, and potentially enable complex and automated relationships between projects.

How to Contribute

If you have a bug/feature/idea/question open up an issue in this repository.

If there is something you'd like to code, do so and open a PR in this repository and reference the relevant issues.

If you just want to hangout and contribute try scrolling through open issues and going from there.

Repository layout

The repository is divided into two sections cli and src.

src contains all the functions exported by this module.

cli defines commands that use these funcitons.