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

etison-delta-currency

v1.4.0

Published

Ember CLI addon providing delta statistics between two currency values

Readme

Installation

ember install etison-delta-currency

Live Demo

  • git clone <repository-url> this repository
  • change into the new directory
  • npm install
  • bower install
  • ember server
  • Visit the app at http://localhost:4200.

Required Configuration

This addon uses the ember-intl addon which requires you to:

Usage

The currency, currentLabel, and previousLabel properties must be set when using the etison-delta-currency component, otherwise the "no data" view will be displayed.

Setting the isFeatured property to true will result in the rendered etison-delta-currency component having additional visual treatment applied to it. This property defaults to false and does not need to be passed to the component if not indicating it is featured.

Example usage:

{{etison-delta-currency
    currentLabel="Today so far"
    currentValue=totalRevenueToday
    previousLabel="vs. yesterday"
    previousValue=totalRevenueYesterday
    currency="USD"
    isFeatured=true
}}

AWARENESS regarding architecture of company offerings

cents-to-dollars helper

Consider extracting this into a shared addon as it begins being used by other addons and applications. If https://github.com/SuccessEtcllc/etison-delta-currency/issues/2 hasn't been addressed by this time make sure it is not overlooked.

Please list current applications/addons using it here so we can track such references:

ember-intl dependency

Consider creating our own addon to wrap the ember-intl addon so that duplicated configuration can be avoided. Such configuration includes, but is not limited to:

  • Needing to set a locale in the consuming application
  • The value of this locale and eventual support of localization
  • The Intl.js Polyfill
  • any default entries in app/formats.js

https://github.com/yahoo/ember-intl/pull/284/files is a PR to auto inject polyfill into the head of index.html which can be used for reference when working the above as well as to have an eye kept on it for when included in the released addon.

Please list current applications/addons using it here so we can track such references: