README
ember-normalize-url
An Ember add-on wrapper for the normalize-url node package.
Install
ember install ember-normalize-url
Usage
Import the add-on as a basic shim:
import normalizeUrl from 'normalize-url';
export default Ember.Component.extend({
coolUrl: normalizeUrl('twitter.com') // coolUrl === http://twitter.com
});
Or use the included helper in your templates:
{{#badass-urls as |url|}}
{{normalize-url url}}
{{/badass-urls}}
normalize-url options work as well:
{{normalize-url someUrl normalizeProtocol=false stripWWW=false}}
Installation
git clonethis repositorynpm installbower install
Running
ember server- Visit your app at http://localhost:4200.
Running Tests
npm test(Runsember try:testallto test your addon against multiple Ember versions)ember testember test --server
Building
ember build
For more information on using ember-cli, visit http://ember-cli.com/.