npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ember-cli-bubble

v0.0.5

Published

The default blueprint for ember-cli addons.

Readme

npm version

Ember-cli-bubble

Ember-cli-bubble is an Ember addon that shares multiple features for our Face and Carlton application.

Table of contents

Installation

Ember Cli Bubble works in Ember 1.13.8+ or 2.0+, including beta and canary, with no deprecations whatsoever. Any deprecation will be considered a bug.

As any other ember-cli addon, run:

ember install ember-cli-bubble

Features overview

Ember Cli Bubble shares styles, components and configuration between our Face and Carlton application. By doing this, we will skip doing the same updates for each application.

Link-li

Link-li is a component that will create a link with tootlip and custom active style. We will use this functionality in our side-bar.

{{#link-li currentWhen="route" data-toggle="tooltip" data-placement="right" title=(t "lbl.translation") }}
  {{#link-to 'route'}}content{{/link-to}}
{{/link-li}}

Loaders

Face and Carlton will have mutilple shared loaders. This addon will include Loader.css by default via bower.

{{large-loader}}
{{small-loader}}

Google Maps

Google's javascript library will be automatically referenced inside <head>. To use your API key, specify it in your application configuration in config/environment.js:

var ENV = {
  // ...
  googleMaps: {
    apiKey: 'API-KEY-HERE',
    clientId: 'CLIENT-ID-HERE'
  },
  // ...
};

If for some reason you want to prevent this addon from adding the script tag (e.g another library already does it), just specify:

var ENV = {
  // ...
  googleMaps: {
    include: false
  },
  // ...
};

Typekit

Typekit's library will be automatically referenced inside <head>. To use your API key, specify it in your application configuration in config/environment.js:

var ENV = {
  // ...
  typekit: {
    kitId: 'API-KEY-HERE',
  },
  // ...
};

If for some reason you want to prevent this addon from adding the script tag (e.g another library already does it), just specify:

var ENV = {
  // ...
  typekit: {
    include: false
  },
  // ...
};

Content Security Policy

Google Maps uses many resources from Google's servers, so the URLs to them have to be white listed. You can set this by adding to the Content Security Policy defined in config/environment.js like so:

ENV.contentSecurityPolicy = {
  'default-src': "'none'",
  'script-src': "'self' 'unsafe-eval' use.typekit.net *.googleapis.com *.gstatic.com",
  'font-src': "'self' use.typekit.net *.gstatic.com",
  'img-src': "'self' p.typekit.net *.googleapis.com *.gstatic.com",
  'style-src': "'self' 'unsafe-inline' use.typekit.net *.googleapis.com"
},

Development

While you are developing and testing, you can run npm link from the root of your addon project. This will make your addon locally available by name.

Then run npm link ember-cli-bubble in any hosting application project root to make a link to your addon in your node_modules folder. Any change in your addon will now directly take effect in any project that links to it this way (see npm-tricks for more details.

Use npm and git to publish the addon like a normal npm package.