4.19.5 • Published 6 years ago
ember-lodash v4.19.5
ember-lodash
This ember addon allows consumption of the lodash library (its ES6 module variant) in ember-cli apps.
Use
First you install this addon
# ember-cli > 0.2.3
ember install ember-lodash
# ember-cli <= 0.2.3
ember install:addon ember-lodash
And then in your ember.js app, you can import individual lodash modules freely
import _string from 'lodash/string';
let truncatedString = _string.trunc(rawString);
Additionally, if you wish to work with the entire lodash library on a single namespace, you have the option of importing that as well
import _ from 'lodash';
let truncatedString = _.trunc(rawString);
It is also possible to import individual modules
import { trunc } from 'lodash';
let truncatedString = trunc(rawString);
Installation
git clone
this repositorynpm install
bower install
Running
ember server
- Visit your app at http://localhost:4200.
Running Tests
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
4.19.5
6 years ago
4.19.4
7 years ago
4.19.3
7 years ago
4.19.2
7 years ago
4.19.1
7 years ago
4.18.0
8 years ago
4.17.6
8 years ago
4.17.5
8 years ago
4.17.4
8 years ago
4.17.3
8 years ago
4.17.2
8 years ago
4.17.1
8 years ago
4.17.0
9 years ago
3.10.0
9 years ago
0.0.11
9 years ago
0.0.10
9 years ago
0.0.9
9 years ago
0.0.7
9 years ago
0.0.6
10 years ago
0.0.5
10 years ago
0.0.4
10 years ago
0.0.3
10 years ago
0.0.2
10 years ago
0.0.1
10 years ago