# lodash-node

> Lodash module bundles for Node.js.

Latest version **3.10.2** (published 2016-01-25) · MIT license · 0 weekly downloads

> **Deprecated.** See documentation for alternatives

> **Better alternative:** See documentation for alternatives (https://github.com/AikidoSec/module-replacements/blob/main/docs/lodash-underscore)

## Install

```sh
npm install lodash-node
pnpm add lodash-node
yarn add lodash-node
bun add lodash-node
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 3.10.2 |
| Published | 2016-01-25 |
| First published | 2013-09-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 112 |
| Author | John-David Dalton |
| Maintainers | jdalton, mathias, phated |

## Links

- npm: https://www.npmjs.com/package/lodash-node
- Repository: https://github.com/lodash/lodash-node
- Homepage: https://lodash.com/
- Issues: https://github.com/lodash/lodash/issues
- npm.io page: https://npm.io/package/lodash-node

## Recent versions

- 3.10.2 (latest) — 2016-01-25
- 3.10.1 — 2015-08-04
- 3.10.0 — 2015-06-30
- 3.9.3 — 2015-05-26
- 3.9.2 — 2015-05-24
- 3.9.1 — 2015-05-19
- 3.9.0 — 2015-05-19
- 3.8.0 — 2015-05-01
- 3.7.0 — 2015-04-16
- 3.6.0 — 2015-03-25
- 3.5.0 — 2015-03-09
- 3.4.0 — 2015-03-06
- 3.3.1 — 2015-02-24
- 3.3.0 — 2015-02-20
- 3.2.0 — 2015-02-12
- … 10 more at https://npm.io/package/lodash-node/versions

## README

# lodash-node v3.10.2

The compatibility & modern builds of [lodash](https://lodash.com/) exported as [Node.js](https://nodejs.org/) modules.

## Discontinued

This package has been discontinued in favor of [lodash@npm](https://github.com/lodash/lodash/tree/npm).

## Installation

Using npm:

```bash
$ {sudo -H} npm i -g npm
$ npm i --save lodash-node
```

In Node.js:

```js
// load the modern build
var _ = require('lodash-node');
// or the compatibility build
var _ = require('lodash-node/compat');
// or a method category
var array = require('lodash-node/modern/array');
// or a method
var chunk = require('lodash-node/compat/array/chunk');
```

See the [package source](https://github.com/lodash/lodash-node/tree/3.10.2) for more details.

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