Skip to content

Lo-Dash methods exported as Node.js/io.js modules.

License

Notifications You must be signed in to change notification settings

desenmeng/lodash-node

 
 

Repository files navigation

lodash-node v3.0.0

Lo-Dash methods exported as Node.js/io.js modules.

Generated using lodash-cli:

$ lodash modularize exports=node -o ./compat
$ lodash modularize modern exports=node -o ./modern

Deprecated

The lodash-node package is deprecated in favor of lodash & lodash-compat ≥ v3.0.0.

Installation

Using npm:

$ npm i --save lodash-node

$ {sudo -H} npm i -g lodash-node
$ npm ln lodash-node

In Node.js/io.js:

// the modern build
var _ = require('lodash-node');

// or the compatibility build
var _ = require('lodash-node/compat');

// or by method category
var array = require('lodash-node/modern/array');

// or by individual methods
var chunk = require('lodash-node/compat/array/chunk');
var clone = require('lodash-node/modern/object/clone');

About

Lo-Dash methods exported as Node.js/io.js modules.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%