Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erasaur/meteor-lodash
Meteor Wrapper for Lo-Dash
https://github.com/erasaur/meteor-lodash
Last synced: 22 days ago
JSON representation
Meteor Wrapper for Lo-Dash
- Host: GitHub
- URL: https://github.com/erasaur/meteor-lodash
- Owner: erasaur
- License: other
- Created: 2015-01-30T01:48:28.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T05:08:16.000Z (almost 7 years ago)
- Last Synced: 2023-02-26T15:23:50.296Z (almost 2 years ago)
- Language: JavaScript
- Homepage: https://atmospherejs.com/erasaur/meteor-lodash
- Size: 49.8 KB
- Stars: 19
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
### Note: This library is deprecated and no longer maintained. Please see https://guide.meteor.com/using-npm-packages.html
A wrapper for [Lo-Dash](http://lodash.com), a JavaScript utility library delivering consistency, modularity, performance, & extras. Lo-Dash can be used as a drop-in replacement for [Underscore.js](http://underscorejs.org).
#### Usage
```
meteor add erasaur:meteor-lodash
```The package exports `_` and `lodash` as two global variables, though it's still possible for `_` to be redefined as `underscore` subsequently. To be safe, you can declare `_ = lodash`in your application code.
#### Why use Lo-Dash?
Lo-Dash is known to be generally more performant than Underscore, and has a set of [features](https://lodash.com/#features) that Underscore lacks.