0.0.3 • Published 7 years ago

ember-normalize-url v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

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 clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember 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://ember-cli.com/.