# gatsby-plugin-lodash

> Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build

Latest version **6.16.0** (published 2026-01-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install gatsby-plugin-lodash
pnpm add gatsby-plugin-lodash
yarn add gatsby-plugin-lodash
bun add gatsby-plugin-lodash
```

## Health

**Score 60/100 (C)** — status: stable.

Positive: no vulnerabilities; high maintenance score; popular repo; extremely popular.

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

## Facts

| | |
|---|---|
| Version | 6.16.0 |
| Published | 2026-01-26 |
| First published | 2017-09-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=18.0.0 <26 |
| Dependencies | 3 |
| Unpacked size | 34.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 55938 |
| Author | Kyle Mathews |
| Maintainers | pieh, kathmbeck, serhalp-netlify, mlgualtieri-gatsby, fk, tylerbarnes, daniellewgatsby |
| Keywords | gatsby, gatsby-plugin |

## Links

- npm: https://www.npmjs.com/package/gatsby-plugin-lodash
- Repository: https://github.com/gatsbyjs/gatsby
- Homepage: https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme
- Issues: https://github.com/gatsbyjs/gatsby/issues
- npm.io page: https://npm.io/package/gatsby-plugin-lodash

## Dependencies (3)

- [@babel/runtime](https://npm.io/package/@babel/runtime.md) ^7.20.13
- [lodash-webpack-plugin](https://npm.io/package/lodash-webpack-plugin.md) ^0.11.6
- [@sigmacomputing/babel-plugin-lodash](https://npm.io/package/@sigmacomputing/babel-plugin-lodash.md) ^3.3.5

## Recent versions

- 6.16.0 (latest) — 2026-01-26
- 6.17.0-next.0 (next) — 2025-11-27
- 6.17.0-react19.1 (react19) — 2025-11-26
- 4.15.0 (latest-v3) — 2022-12-07
- 5.25.0 (latest-v4) — 2022-12-07
- 6.0.0-alpha-drupal-proxyurl.14 (drupal-proxyurl) — 2022-11-22
- 5.14.0-alpha-transformer-json.26 (alpha-transformer-json) — 2022-10-12
- 6.0.0-alpha-v5.d20221012t101120.57 (alpha-v5) — 2022-10-12
- 5.23.0-alpha-a5-peer.70 (alpha-a5-peer) — 2022-09-14
- 5.23.0-alpha-preview-gh-api.26 (preview-gh-api) — 2022-09-08
- 5.23.0-alpha-9689ff.25 (alpha-9689ff) — 2022-08-31
- 5.18.0-alpha-drupal-self-reference.18 (drupal-self-reference) — 2022-07-19
- 5.15.0-alpha-wp-image-cdn-auth.48 (wp-image-cdn-auth) — 2022-05-20
- 5.8.0-alpha-image-service.24 (image-service) — 2022-02-10
- 5.6.0-alpha-ts-jit.60 (alpha-ts-jit) — 2022-01-21
- … 311 more at https://npm.io/package/gatsby-plugin-lodash/versions

## README

# gatsby-plugin-lodash

Adds the Lodash webpack & Babel plugins for easy modular, small Lodash builds.

## Install

`npm install gatsby-plugin-lodash lodash`

## How to use

Add the plugin to your `gatsby-config.js`.

```javascript
plugins: [`gatsby-plugin-lodash`]
```

By default this plugin enables all
[feature sets](https://github.com/lodash/lodash-webpack-plugin#feature-sets). If
you know you don't need some of them, you can remove support for features sets
by setting a `disabledFeatures` option like the following:

```javascript
plugins: [
  {
    resolve: `gatsby-plugin-lodash`,
    options: {
      disabledFeatures: [`shorthands`, `cloning`],
    },
  },
]
```

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