All Projects → lodash → Lodash

lodash / Lodash

Licence: other
A modern JavaScript utility library delivering modularity, performance, & extras.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Lodash

php-lodash
php-lodash is a PHP utility library, similar to Underscore/Lodash.
Stars: ✭ 35 (-99.93%)
Mutual labels:  utilities, lodash
tcl-modules
A collection of pure Tcl, production-ready micro packages
Stars: ✭ 25 (-99.95%)
Mutual labels:  modules, utilities
Styled Tools
Useful interpolated functions for CSS-in-JS
Stars: ✭ 761 (-98.53%)
Mutual labels:  utilities, lodash
pythonic
Python like utility functions for JavaScript: range, enumerate, zip and items.
Stars: ✭ 28 (-99.95%)
Mutual labels:  modules, utilities
Lodash Php
Easy to use utility functions for everyday PHP projects. This is a port of the Lodash JS library to PHP
Stars: ✭ 412 (-99.2%)
Mutual labels:  utilities, lodash
Date Fns
⏳ Modern JavaScript date utility library ⌛️
Stars: ✭ 27,650 (-46.48%)
Mutual labels:  utilities, modules
You Dont Need Lodash Underscore
List of JavaScript methods which you can use natively + ESLint Plugin
Stars: ✭ 13,915 (-73.06%)
Mutual labels:  utilities, lodash
Videoplayback Ios
Swift AVPlayer wrapper using the VIPER architecture. Currently a work in progress
Stars: ✭ 213 (-99.59%)
Mutual labels:  modules
Devutils App
Offline Toolbox for Developers
Stars: ✭ 2,735 (-94.71%)
Mutual labels:  utilities
Gitpkg
Publish packages as git tags
Stars: ✭ 208 (-99.6%)
Mutual labels:  modules
Browserify
browser-side require() the node.js way
Stars: ✭ 13,929 (-73.04%)
Mutual labels:  modules
Minipack
📦 A simplified example of a modern module bundler written in JavaScript
Stars: ✭ 2,625 (-94.92%)
Mutual labels:  modules
Stdlib
✨ Standard library for JavaScript and Node.js. ✨
Stars: ✭ 2,749 (-94.68%)
Mutual labels:  utilities
Eslint Plugin Lodash
ESLint rules for lodash
Stars: ✭ 208 (-99.6%)
Mutual labels:  lodash
Pax
The fastest JavaScript bundler in the galaxy.
Stars: ✭ 2,626 (-94.92%)
Mutual labels:  modules
Venture Management
一个包含vuejs和nodejs技术的全栈项目
Stars: ✭ 208 (-99.6%)
Mutual labels:  lodash
Webpack Library Example
An example of how to author libraries using webpack.
Stars: ✭ 251 (-99.51%)
Mutual labels:  lodash
Tsutils
utility functions for working with typescript's AST
Stars: ✭ 240 (-99.54%)
Mutual labels:  utilities
Cargo Modules
A cargo plugin for showing a tree-like overview of a crate's modules.
Stars: ✭ 222 (-99.57%)
Mutual labels:  modules
Mathutilities
A collection of some of the neat math and physics tricks that I've collected over the last few years.
Stars: ✭ 2,815 (-94.55%)
Mutual labels:  utilities

lodash

Site | Docs | FP Guide | Contributing | Wiki | Code of Conduct | Twitter | Chat

The Lodash library exported as a UMD module.

Generated using lodash-cli:

$ npm run build
$ lodash -o ./dist/lodash.js
$ lodash core -o ./dist/lodash.core.js

Download

Lodash is released under the MIT license & supports modern environments.
Review the build differences & pick one that’s right for you.

Installation

In a browser:

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

Using npm:

$ npm i -g npm
$ npm i lodash

Note: add --save if you are using npm < 5.0.0

In 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');

Looking for Lodash modules written in ES6 or smaller bundle sizes? Check out lodash-es.

Why Lodash?

Lodash makes JavaScript easier by taking the hassle out of working with arrays,
numbers, objects, strings, etc. Lodash’s modular methods are great for:

  • Iterating arrays, objects, & strings
  • Manipulating & testing values
  • Creating composite functions

Module Formats

Lodash is available in a variety of builds & module formats.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].