Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

jquery-browserify

jmars10.9k1.8.1

jQuery: The Write Less, Do More, JavaScript Library, packaged for browserify

util, dom, jquery

readme

jQuery-browserify

packaged for use with node-browserify.

Just add it to your browserify require list and use it!

var $ = require('jquery-browserify')
$("img[attr$='png']").hide()

If you are using browserify >= 0.4.7 you can map it to 'jquery' for convenience, thanks substack!

browserify({
  require : { jquery : 'jquery-browserify' }
});

then it's just var something = require('jquery') in the browser