Lodash 一致性 模块化 高性能 JavaScript 实用工具库
Lodash 是一个一致性、模块化、高性能的 JavaScript 实用工具库。Lodash 是 JS 集 Array/Object/String/Function 的 Util 于一身,Lodash 打包了 Array/Object/String/Function 里一些 API,好处是连 ES6 的也打包了,所以让你想在 ES5 环境下使用诸如 Array/reduce/includes/some/every 等时可以借 Lodash 来帮忙。
快速示例
_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });// → { 'a': 1, 'b': 2 }
_.partition([1, 2, 3, 4], n => n % 2);
// → [[1, 3], [2, 4]]
下载
- Core build (~4kB gzipped)
- Full build (~24kB gzipped)
- CDN 加速
Lodash 采用 MIT license 协议发布,并且支持最新的运行环境。 Review the build differences & pick one that’s right for you.
安装
浏览器环境:
<script src="lodash.js"></script>
通过 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');
注意:
Install n_ for Lodash use in the Node.js < 6 REPL.
为什么选择 Lodash ?
Lodash 通过降低 array、number、objects、string 等等的使用难度从而让 JavaScript 变得更简单。 Lodash 的模块化方法 非常适用于:
- 遍历 array、object 和 string
- 对值进行操作和检测
- 创建符合功能的函数
模块格式
Lodash is available in a variety of builds & module formats.
- lodash & per method packages
- lodash-es, babel-plugin-lodash, & lodash-webpack-plugin
- lodash/fp
- lodash-amd
Complementary Tools
- futil-js is a set of functional utilities designed to complement lodash
扩展阅读
- Contributing
- Release Notes
- Wiki (Changelog, Roadmap, etc.)
- Lodash 中文文档
支持兼容性
在 Chrome 54-55、Firefox 49-50、IE 11、Edge 14、Safari 9-10、Node.js 6-7 和 PhantomJS 2.1.1 上通过测试。 Automated browser & CI test runs are available.
以上是 Lodash 一致性 模块化 高性能 JavaScript 实用工具库 的全部内容, 来源链接: utcz.com/p/232145.html