# huntjs

> Minimal library to observe nodes entering and leaving the viewport

Latest version **5.0.0** (published 2019-08-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install huntjs
pnpm add huntjs
yarn add huntjs
bun add huntjs
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 5.0.0 |
| Published | 2019-08-06 |
| First published | 2016-02-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 40.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 339 |
| Author | Jeremias Menichelli |
| Maintainers | jeremenichelli |
| Keywords | hunt, scroll, intersection, observer, viewport, dom, element |

## Links

- npm: https://www.npmjs.com/package/huntjs
- Repository: https://github.com/jeremenichelli/hunt
- Homepage: https://github.com/jeremenichelli/hunt#readme
- Issues: https://github.com/jeremenichelli/hunt/issues
- npm.io page: https://npm.io/package/huntjs

## 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

- 5.0.0 (latest) — 2019-08-06
- 4.1.0 — 2017-10-30
- 4.0.1 — 2017-10-16
- 4.0.0 — 2017-08-30
- 3.0.2 — 2017-05-13
- 3.0.1 — 2017-05-04
- 3.0.0 — 2017-04-03
- 2.1.2 — 2017-01-11
- 2.1.1 — 2016-12-27
- 2.1.0 — 2016-12-27
- 2.0.1 — 2016-10-26
- 2.0.0 — 2016-10-26
- 1.0.2 — 2016-05-16
- 1.0.1 — 2016-03-24
- 1.0.0 — 2016-02-16
- … 1 more at https://npm.io/package/huntjs/versions

## README

# hunt

[![Build Status](https://travis-ci.org/jeremenichelli/hunt.svg)](https://travis-ci.org/jeremenichelli/hunt)

👻 Minimal library to observe nodes entering and leaving the viewport.

_Be sure to also check the **Intersection Observer API**, a native solution which works in modern browsers, if you want to know more I wrote an [introduction article](//jeremenichelli.io/2016/04/quick-introduction-to-the-intersection-observer-api) explaining how it works._

## Install

```sh
# npm
npm i huntjs --save

# yarn
yarn add huntjs
```

Or include it as a script with `//unpkg.com/huntjs/dist/hunt.umd.js` as source.

## Usage

The package exposes an observer that receives a `Node`, `NodeList` or `Array` as a first argument and an object as a second argument with the desired set of options.

```js
import Hunt from 'huntjs';

// lazy loading images using dataset and hunt
const lazyImages = document.querySelectorAll('img.lazy');

let observer = new Hunt(lazyImages, {
  enter: (image) => image.src = image.dataset.src
});
```

_Check this example working [here](//jeremenichelli.github.io/hunt)_

By default the observer will stop _hunting_ elements when they enter and then leave the viewport.

## Config options

These are the properties you can set as a configuration:

 - `enter`, _function_ called when the element becomes visible.
 - `leave`, _function_ method called when the element leaves completely the viewport.

_Both callbacks will receive the element which triggered the action as argument._

 - `persist`, _boolean_ and `false` by default which indicates if the targets should still be observed after they entered and left the viewport. When this option is `true` enter and leave methods will be called each time an element state changes. Recommended for constant animations triggered by scroll events.
 - `offset`, _number_ that defines a number of pixels ahead of the element's state change, `0` being the default value. Good if you want to start loading an image before the user reaches to it.
 - `throttleInterval`, _number_ interval use for event throttling. A lower number will mean elements are detected in view quicker, but may degrade performace. A higher value will mean elements are detected in view slower, but may improve performance. The default value is `100`, is recommended not to modify this.

### Custom configuration over dataset

If you need exceptions over config for one or more elements, `data-hunt-offset` and `data-hunt-persist` attributes can be used. These custom values will override the ones you passed to the observer.

```html
<div
  class="observed--element"
  data-hunt-persist="true"
  data-hunt-offset="500"
>
</div>
```

_**JSON.parse** is used on these values at runtime, make sure to pass safe content._

## Contributing

To contribute [Node.js](//nodejs.org) and [yarn](//yarnpkg.com) are required.

Before commit make sure to follow [conventional commits](//www.conventionalcommits.org) specification and check all tests pass by running `yarn test`.

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