# jquery-browserify

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

Latest version **1.8.1** (published 2012-09-07) · 0 weekly downloads

## Install

```sh
npm install jquery-browserify
pnpm add jquery-browserify
yarn add jquery-browserify
bun add jquery-browserify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.8.1 |
| Published | 2012-09-07 |
| First published | 2011-07-02 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 53 |
| Author | John Resig |
| Maintainers | jmars |
| Keywords | util, dom, jquery |

## Links

- npm: https://www.npmjs.com/package/jquery-browserify
- Repository: https://github.com/jmars/jquery-browserify
- Homepage: http://www.jQuery.com
- npm.io page: https://npm.io/package/jquery-browserify

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 1.8.1 (latest) — 2012-09-07
- 1.7.2 — 2012-04-13
- 1.6.2 — 2011-07-25
- 1.6.1 — 2011-07-02
- 1.6.0 — 2011-07-02
- 1.5.0 — 2011-07-02

## README

# jQuery-browserify
## packaged for use with [node-browserify](https://github.com/substack/node-browserify).

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

````javascript
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!

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

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

---
_Source: https://npm.io/package/jquery-browserify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
