Lodash in ES6 for Ember.js apps
npm install ember-lodash



This ember addon allows consumption of the lodash library (its ES6 module variant) in ember-cli apps.
First you install this addon
``sh`ember-cli > 0.2.3
ember install ember-lodashember-cli <= 0.2.3
ember install:addon ember-lodash
And then in your ember.js app, you can import individual lodash modules freely
`js
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
`js
import _ from 'lodash';
let truncatedString = _.trunc(rawString);
`
It is also possible to import individual modules
`js
import { trunc } from 'lodash';
let truncatedString = trunc(rawString);
`
* git clone this repositorynpm install
* bower install
*
* ember server
* Visit your app at http://localhost:4200.
* npm test (Runs ember try:testall to test your addon against multiple Ember versions)ember test
* ember test --server
*
* ember build`
For more information on using ember-cli, visit http://www.ember-cli.com/.