# lodash-node **Repository Path**: mirrors_lodash/lodash-node ## Basic Information - **Project Name**: lodash-node - **Description**: Lodash module bundles for Node.js. - **Primary Language**: Unknown - **License**: CC0-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-25 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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.