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
; let truncatedString = _string;
Additionally, if you wish to work with the entire lodash library on a single namespace, you have the option of importing that as well
; let truncatedString = _;
It is also possible to import individual modules
; let truncatedString = ;
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/.