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

bubbleup

v0.0.2

Published

Zero-config tooling

Readme

Bubbleup

Configuration free tooling

Bubbleup is designed to be a configuration-free way to create your build and test systems. Configuring your project is always a very time consuming and energy draining process. The goal of bubbleup is to allow 'configuration' by simply npm installing what you want to use.

CLI


bubbleup build

Goes through all of your installed base build plugins and will execute them as your build process.

bubbleup test

Goes through all of your installed test plugins and will execute them as your build process.

CLI options

--pluginsPath path or -p path

By default bubbleup will look inside the current directory for node_modules to find and require your bubble plugins. Using -p will change the page it will search in.

Node API


findAllPlugins(directory)

Searchs through the given directory for all folders prefixed with bubbleup-plugin and returns an array of all the matched names.

findBuildPlugins(directory)

Searchs through the given directory for all folders prefixed with bubbleup-plugin-build and returns an array of all the matched names.

findTestPlugin(directory)

Searchs through the given directory for all folders prefixed with bubbleup-plugin-test and returns an array of all the matched names.

findPluginsByPrefix(directory, prefix)

Searchs through the given directory for all folders prefixed with the given prefix and returns an array of all the matched names.

This can be very useful for configuring plugins to further configure another plugin.

isBasePlugin(plugin)

Given a plugin returns true if it is a base plugin, and false if it is not.

requirePlugins(directory, pluginNames)

Given a directory to search for plugins and an array of pluginNames returns an array of plugin instances.

Plugins

A plugin is a simple object. The interface is as follows:

interface Plugin {
  exec (args, options, currentWorkingDirectory): void
  base: boolean
}

args {string | Array }

args is the parameters passed to the given command

When using bubbleup build <entryFile> the entryFile name is used as args. When using bubble test <filesGlob> an array of matched files are used a args

options {Object}

The underlying cli uses commander.js and simply passes on the Options object that an .action() recieves as the second argument.

Base Plugins

A base plugin is a plugin in which has base equal to true. bubbleup build and bubbleup test only execute base plugins. Base plugins are assumed to be the entry point to a further plugin system.

For instance bubbleup-plugin-test-mocha could be a base plugin, which can be further configured simply by installing bubbleup-plugin-test-mocha-babel-register to use babel-register to run your tests. (Neither of these plugins exist yet)