Lodash 介紹

2021-09-22 09:28 更新

Lodash logo

Lodash 是一個(gè)一致性、模塊化、高性能的 JavaScript 實(shí)用工具庫(kù)。

Lodash 遵循 MIT 開源協(xié)議發(fā)布,并且支持最新的運(yùn)行環(huán)境。 查看各個(gè)構(gòu)件版本的區(qū)別并選擇一個(gè)適合你的版本。

安裝

瀏覽器環(huán)境:

<script src="lodash.js"></script>

通過(guò) npm:

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

Node.js:

// Load the full build.
var _ = require('lodash');
// Load the core build.
var _ = require('lodash/core');
// Load the FP build for immutable auto-curried iteratee-first data-last methods.
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');
注意:
如需在 Node.js < 6 的 REPL 環(huán)境中使用 Lodash,請(qǐng)安裝 n_

為什么選擇 Lodash ?

Lodash 通過(guò)降低 array、number、objects、string 等等的使用難度從而讓 JavaScript 變得更簡(jiǎn)單。 Lodash 的模塊化方法 非常適用于:

  • 遍歷 array、object 和 string
  • 對(duì)值進(jìn)行操作和檢測(cè)
  • 創(chuàng)建符合功能的函數(shù)

模塊格式

Lodash 提供 多種構(gòu)建方式 和模塊格式。

補(bǔ)充工具

  • futil-js 是一套用來(lái)補(bǔ)足 lodash 的實(shí)用工具集。

擴(kuò)展閱讀

兼容性

在 Chrome 74-75、Firefox 66-67、IE 11、Edge 18、Safari 11-12 和 Node.js 8-12 環(huán)境中測(cè)試通過(guò)。


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)