# @ember/jquery

> The default blueprint for ember-cli addons.

Latest version **2.0.0** (published 2021-06-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ember/jquery
pnpm add @ember/jquery
yarn add @ember/jquery
bun add @ember/jquery
```

## 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 | 2.0.0 |
| Published | 2021-06-10 |
| First published | 2018-05-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | 12.* \|\| 14.* \|\| >= 16 |
| Dependencies | 5 |
| Unpacked size | 21.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Maintainers | mixonic, rwjblue, stefanpenner, chadhietala, chancancode, dgeb, krisselden, locks, mmun, tomdale, wycats, katiegengler, nullvoxpopuli, scalvert |
| Keywords | ember-addon |

## Links

- npm: https://www.npmjs.com/package/@ember/jquery
- Repository: https://github.com/emberjs/ember-jquery
- Homepage: https://github.com/emberjs/ember-jquery#readme
- Issues: https://github.com/emberjs/ember-jquery/issues
- npm.io page: https://npm.io/package/@ember/jquery

## Dependencies (5)

- [jquery](https://npm.io/package/jquery.md) ^3.5.0
- [resolve](https://npm.io/package/resolve.md) ^1.15.1
- [broccoli-funnel](https://npm.io/package/broccoli-funnel.md) ^3.0.6
- [ember-cli-babel](https://npm.io/package/ember-cli-babel.md) ^7.26.6
- [broccoli-merge-trees](https://npm.io/package/broccoli-merge-trees.md) ^4.2.0

## Recent versions

- 2.0.0 (latest) — 2021-06-10
- 1.1.0 — 2019-10-04
- 1.0.0 — 2019-10-02
- 0.6.1 — 2019-06-06
- 0.6.0 — 2019-01-25
- 0.5.2 — 2018-06-07
- 0.5.1 — 2018-05-23
- 0.5.0 — 2018-05-23

## README

ember-jquery
==============================================================================

Ember has been historically coupled to jQuery. As part of 
[RFC294](https://github.com/emberjs/rfcs/blob/master/text/0294-optional-jquery.md#introduce-emberjquery-package),
jQuery has been made optional. 

This addon makes jQuery available in an Ember project. It also provides the mechanism that implements jQuery 
integration when that feature is enabled. 


Compatibility
------------------------------------------------------------------------------

* Ember.js v2.16 or above
* Ember CLI v2.13 or above
* Node.js v12 or above


Installation
------------------------------------------------------------------------------

```
ember install @ember/jquery
```

If you also wish to enable Ember's jQuery integration, you must do so explicitly:

```bash
ember install @ember/optional-features
ember feature:enable jquery-integration
``` 

Usage
------------------------------------------------------------------------------

```js
import jQuery from 'jquery'
const element = jQuery('#special');
```

Contributing
------------------------------------------------------------------------------

See the [Contributing](CONTRIBUTING.md) guide for details.


License
------------------------------------------------------------------------------

This project is licensed under the [MIT License](LICENSE.md).

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