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

system-bower

v0.2.3

Published

Bower plugin for StealJS and SystemJS

Readme

system-bower

This is a plugin for SystemJS and StealJS that makes it easy to work with Bower.

The idea is to reduce the amount of manual configuring needed when using SystemJS/StealJS and instead leverage the metadata included in bower.json to have the configuration done for you.

Install

If you're using StealJS you don't have have to install this plugin, it's included by default.

If you're using SystemJS install this as another bower dependency:

bower install system-bower --save-dev

Use

To set things up you'll want to import your bower.json file using the plugin which will correctly configure the loader.

StealJS

In your config file simply import your bower.json using this module as the plugin. It is named bower:

// config.js

require("bower.json!bower");

In the future this won't be needed at all, and there will be a simpler way to enable the plugin.

SystemJS

System.paths.bower = "bower_components/system-bower/bower.js";
System.import("bower.json!bower").then(function() {
  // Configurations set, you can start importing stuff
});

Configuring

This plugin allows for a couple of options to optimize customization:

System.bowerPath

By default the plugin will assume dependencies are located at bower_components. Since a lot of people like to place their dependencies in another folder name you can change the lookup path with System.bowerPath.

System.bowerPath = "vendor";

With StealJS you can add this to your script tag:

<script src="bower_components/steal/steal.js"
  data-bower-path="vendor"></script>

System.bowerDev

Using System.bowerDev will enable loading of devDependencies. This is useful when testing. It will only load your root devDependencies, not those of your dependencies. To enable just make the value truthy:

System.bowerDev = true;

or with StealJS

<script src="bower_components/steal/steal.js"
  data-bower-dev="true"></script>

License

MIT