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

jquery-auto-builder

v0.1.4

Published

An Automated jQuery Custom Builder that generates a custom build of jquery based on the needs of your code.

Readme

#jQuery Auto Builder

An NPM package to help you automate the process of building your custom version of jQuery.

##How to use it

Just Install it using npm npm install jquery-auto-builder

Then, you can simply use the command-line tool to build your custom version of jquery.

jquery-auto-builder [filename, filename,...] [options]

filename is the name of the file where you have your jquery code. jQuery Auto Builder will read your file and build a dry version of jQuery with only the modules you need to run your code.

Supported options:

  • -o -- the name of the output jquery file. By default, jQuery Auto Builder will save a file named jquery.custom.min.js or jquery.custom.js on the current directory. This option does not force directory creation.
  • -d -- build jquery in developer mode. By default, jQuery Auto Builder builds a minified version of jQuery.
  • -v -- Choose the version of jQuery you want to build. JQuery Auto Builder only builds the latest stable version of jQuery 1.* and 2.*. Current possible values are:
    • 1 -- Builds jQuery v.1.11.1
    • 2 -- Builds jQuery v.2.1.1

###Example

Building a minified version of jQuery 2.1.1 based on the file main.js, where all your jQuery code lives. Simply run:

jquery-auto-builder main.js

A file called jquery.custom.min.js will be created on your current dir with your custom jQuery.

If you wanted a developer version of jQuery 1.11.1 built, based on 3 different files, and the output to have a different name, then you would run:

jquery-auto-builder main-1.js main-2.js, main-3.js -d -v 1 -o dist/jquery.dev.dry.js

A file named jquery.dev.dry.js would be created on your dist (should exist before you run the command) folder with a developer dry version of jQuery v.1.11.1.

##Support, Issues and Feedback

Any kind of support and feedback will be of great help.

##License

MIT License © Vinícius Andrade