0% found this document useful (0 votes)
67 views

NPM Is Now A Part of Github: Lodash

Lodash is a popular JavaScript utility library that provides utility functions for common programming tasks like iterating arrays, objects, strings, etc. It is downloaded over 35 million times per week and has over 123,000 dependent packages on npm. Lodash is open source under the MIT license and provides a full build as well as core and FP builds that can be imported individually or cherry-picked for smaller bundles.

Uploaded by

Maël Nison
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
67 views

NPM Is Now A Part of Github: Lodash

Lodash is a popular JavaScript utility library that provides utility functions for common programming tasks like iterating arrays, objects, strings, etc. It is downloaded over 35 million times per week and has over 123,000 dependent packages on npm. Lodash is open source under the MIT license and provides a full build as well as core and FP builds that can be imported individually or cherry-picked for smaller bundles.

Uploaded by

Maël Nison
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

06/10/2020 lodash - npm

npm is now a part of GitHub

Products Pricing Documentation Community

Sign Up Sign In

Search packages Search

Learn about our RFC process, Open RFC meetings & more. Join in the discussion! »

lodash
4.17.20 • Public • Published 2 months ago

Readme

Explore BETA

0 Dependencies

123 528 Dependents

113 Versions

Install

npm i lodash

Weekly Downloads

35 507 215

Version License
4.17.20 MIT

Unpacked Size Total Files


1.41 MB 1049

https://www.npmjs.com/package/lodash 1/4
06/10/2020 lodash - npm

Issues Pull Requests


101 63

Homepage
lodash.com/

Repository
github.com/lodash/lodash

Last publish
2 months ago

Collaborators

Try on RunKit

Report a vulnerability

lodash v4.17.20
The Lodash library exported as Node.js modules.

Installation
Using npm:

$ npm i -g npm
$ npm i --save lodash

In Node.js:

// Load the full build.


var _ = require('lodash');

https://www.npmjs.com/package/lodash 2/4
06/10/2020 lodash - npm

// Load the core build.


var _ = require('lodash/core');
// Load the FP build for immutable auto-curried iteratee-first data
var fp = require('lodash/fp');

// Load method categories.


var array = require('lodash/array');
var object = require('lodash/fp/object');

// Cherry-pick methods for smaller browserify/rollup/webpack bundles


var at = require('lodash/at');
var curryN = require('lodash/fp/curryN');

See the package source for more details.

Note:
Install n_ for Lodash use in the Node.js < 6 REPL.

Support
Tested in Chrome 74-75, Firefox 66-67, IE 11, Edge 18, Safari 11-12, & Node.js 8-12.
Automated browser & CI test runs are available.

Keywords

modules stdlib util

https://www.npmjs.com/package/lodash 3/4
06/10/2020 lodash - npm

Support

Help

Community

Advisories

Status

Contact npm

Company

About

Blog

Press

Terms & Policies

Policies

Terms of Use

Code of Conduct

Privacy

https://www.npmjs.com/package/lodash 4/4

You might also like