
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
jquery-auto-builder
Advanced tools
An Automated jQuery Custom Builder that generates a custom build of jquery based on the needs of your code.
#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.12 -- 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
FAQs
An Automated jQuery Custom Builder that generates a custom build of jquery based on the needs of your code.
We found that jquery-auto-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.