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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jadetree/currency

v0.8.19

Published

Localized Currency Library for Jade Tree

Downloads

25

Readme

@jadetree/currency

Javascript localized currency handling and formatting library for the Jade Tree budgeting software using Unicode CLDR data.

Install jadetree-currency using npm or yarn:

$ yarn install @jadetree/currency

Using jadetree-currency is easy:

import { Money, Currency, Locale } from '@jadetree/currency';

// Load l10n data from the locales sub-package
import { de_AT, de_DE } from '@jadetree/currency/locales/de';
import { en_US } from '@jadetree/currency/locales/en';

/* CommonJS (Node.js) Syntax */
const { Money, Currency, Locale } = require('@jadetree/currency');
const { de_AT, de_DE } = require('@jadetree/currency/locales/de');
const { en_US } = require('@jadetree/currency/locales/en');

// Create a Money Object with USD $4.00
const m = new Money('4.00', 'USD');

// Add and Subtract Amounts
const m2 = m.add(1).subtract('0.50');

// Format into a localized string
m2.format(en_US);     // '$4.50'
m2.format(de_DE);     // '4,50\u00a0$'

// Localized parsing works too, with default currency for the locale
const m3 = new Money('1 234,56', de_AT);
m3.format(en_US);     // €1,234.56

For use in a browser without additional packaging (e.g. when a backend API can determine which locale data to serve), the files in the dist directory may be included as script tags, as in the following example which loads only the German localization data to reduce transfer and load time.

<script type="text/javascript" src="https://unpkg.com/@jadetree/currency/index.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/@jadetree/currency/locales/de.min.js"></script>

For a working example of jt-currency in a single HTML page, open the index.html file in the demo folder in your browser.

git clone https://github.com/asymworks/jadetree-currency.git
cd jadetree-currency/demo
open index.html

Features

  • Major world currency data from ISO 4217 included
  • Localization data for currency and number formatting included and integrated - no external internationalization or localization helper libraries required
  • Flexible formatting options
  • Handles any type of money input: strings, numbers, Decimals
  • Only one dependency

Installation

Install jadetree-currency by running:

yarn add @jadetree/currency

Contribute

  • Issue Tracker: https://github.com/asymworks/jadetree-currency/issues
  • Source Code: https://github.com/asymworks/jadetree-currency

API Documentation

In Work

License

The project is licensed under the BSD license.