🚀 Socket Launch Week 🚀 Day 5: Introducing Socket Fix.Learn More
Socket
Sign inDemoInstall
Socket

ember-is-fastboot

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-is-fastboot

Provides a mixin for addons to check the FastBoot status of their consuming apps

0.1.1
latest
npm
Version published
Weekly downloads
17
-39.29%
Maintainers
1
Weekly downloads
 
Created
Source

Ember Is Fastboot

This addon provides a mixin to make it easy to know if your addon is currently in FastBoot mode. This approach is lovingly stolen from a great PR made by @tylerturdenpants!

Installation

ember install ember-is-fastboot

Usage

The is-fastboot mixin is the only utility you need to use! It provides an _isFastBoot computed that tells you if FastBoot mode is currently active.

For example, if you have a service that needs to short-circuit some logic in FastBoot:

// services/foo.js
import Service from '@ember/service';
import IsFastbootMixin from 'ember-is-fastboot/mixins/is-fastboot';

export default Service.extend(IsFastbootMixin, {
  doStuff() {
    if (this.get('_isFastBoot')) {
      return; // Don't do the stuff, we're in FastBoot mode
    }
    
    // Do the stuff, we're not in FastBoot mode
  }
});

That's it! You can throw this mixin into any Ember object that needs to be FastBoot-aware.

Contributing

Installation

  • git clone <repository-url>
  • cd ember-is-fastboot
  • npm install

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

Keywords

ember-addon

FAQs

Package last updated on 25 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts