ember-basic-template-helpers

The default blueprint for ember-cli addons.

Usage no npm install needed!

<script type="module">
  import emberBasicTemplateHelpers from 'https://cdn.skypack.dev/ember-basic-template-helpers';
</script>

README

ember-basic-template-helpers

Note: This is a learning project and not intended for production level applications

This add-on provides some very basic helpers for simple use cases. It aims to avoid adding extra CSS selectors or computed properties to service basic template needs.

Compatibility

  • Ember.js v3.4 or above
  • Ember CLI v2.13 or above
  • Node.js v8 or above

Installation

ember install ember-basic-template-helpers

Usage

All helpers are invoked as any other normal ember helper.

Contents

Helpers

debug

Adds a new DEBUG line to the console for each string argument passed to the helper.

{{db "A Debug Message" "Another Debug Message"}}

invert-bool

Takes a boolean value as the first argument and returns the opposite value

{{invert-bool true}}

returns false

uppercase

Takes a string of any case and return the same string in uppercase

{{capitalise 'string'}}

lowercase

Takes a string of any case and return the same string in lowercase

{{lowercase 'string'}}

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.