🌐
GitHub
github.com › scurker › currency.js
GitHub - scurker/currency.js: A javascript library for handling currencies · GitHub
currency.js is a lightweight ~1kb javascript library for working with currency values. It was built to work around floating point issues in javascript.
Starred by 3.4K users
Forked by 147 users
Languages   JavaScript 94.7% | TypeScript 5.3%
🌐
GitHub
github.com › openexchangerates › money.js
GitHub - openexchangerates/money.js: money.js is a tiny (1kb) javascript currency conversion library, for web & nodeJS
Simple and tiny JavaScript library for realtime currency conversion and exchange rate calculation, from any currency, to any currency. money.js is lightweight, has no dependencies, and works great client-side or server-side.
Starred by 1.5K users
Forked by 124 users
Languages   CSS 66.2% | JavaScript 33.8% | CSS 66.2% | JavaScript 33.8%
🌐
Openexchangerates
openexchangerates.github.io › money.js
money.js / fx() - javascript currency conversion library
It's on GitHub at openexchangerates/javascript-sandbox-console. ... To use money.js as a standalone library, download the minified or development version of money.js, and include it in your HTML page: ... To use money.js to convert currencies, you'll need to feed it with some exchange rate ...
🌐
Scurker
scurker.github.io › currency.js
currency.js
A small, lightweight javascript library for working with currency values.Download currency.js
🌐
Openexchangerates
openexchangerates.github.io › accounting.js
accounting.js: JavaScript number and currency formatting library
accounting.js is a tiny JavaScript library by Open Exchange Rates, providing simple and advanced number, money and currency formatting.
🌐
GitHub
github.com › scurker › currency.js › blob › main › changelog.md
currency.js/changelog.md at main · scurker/currency.js
A javascript library for handling currencies. Contribute to scurker/currency.js development by creating an account on GitHub.
Author   scurker
🌐
GitHub
github.com › osrec › currencyFormatter.js
GitHub - osrec/currencyFormatter.js: A super simple currency formatting library
A super simple currency formatting library. Contribute to osrec/currencyFormatter.js development by creating an account on GitHub.
Starred by 628 users
Forked by 59 users
Languages   JavaScript 100.0% | JavaScript 100.0%
🌐
GitHub
github.com › scurker › currency.js › blob › main › package.json
currency.js/package.json at main · scurker/currency.js
A javascript library for handling currencies. Contribute to scurker/currency.js development by creating an account on GitHub.
Author   scurker
🌐
GitHub
github.com › refinedguides › currency-converter
GitHub - refinedguides/currency-converter: How to Create a Currency Converter in Javascript
How to Create a Currency Converter in Javascript. Contribute to refinedguides/currency-converter development by creating an account on GitHub.
Forked by 3 users
Languages   JavaScript 46.8% | CSS 37.2% | HTML 16.0% | JavaScript 46.8% | CSS 37.2% | HTML 16.0%
🌐
Tkcnn
tkcnn.com › github › scurker › currency.js.html
scurker/currency.js - GitHub
scurker/currency.js, A javascript library for handling currencies
Find elsewhere
🌐
Ilib-js
ilib-js.github.io › iLib › docs › api › jsdoc › Currency.js.html
Currency.js
*/ var Currency = function (options) { if (options) { if (options.code) { this.code = options.code; } if (options.locale) { this.locale = (typeof(options.locale) === 'string') ? new Locale(options.locale) : options.locale; } if (options.sign) { this.sign = options.sign; } if (options.loadParams) { this.loadParams = options.loadParams; } options.sync = (typeof(options.sync) !== 'undefined') ? options.sync : true; } else { options = {sync: true}; } this.locale = this.locale || new Locale(); if (typeof(ilib.data.currency) === 'undefined') { Utils.loadData({ name: "currency.json", object: "Currenc
🌐
Dinerojs
dinerojs.com
Dinero.js
Get StartedView on GitHub · Install · npm install dinero.js · Usage · import { dinero, add, toDecimal } from 'dinero.js'; import { USD } from 'dinero.js/currencies'; const price = dinero({ amount: 1999, currency: USD }); const tax = dinero({ amount: 160, currency: USD }); const total = add(price, tax); toDecimal(total); // "21.59" All operations return new Dinero objects.
🌐
GitHub
github.com › davidkalosi › js-money
GitHub - davidkalosi/js-money: JavaScript Implementation of Fowlers Money object. · GitHub
JS Money is a JavaScript implementation of Martin Fowlers Money pattern. The package is available through npm and bower. ... First we need to import the library. ... Amounts can be supplied either as integers or decimal numbers.
Starred by 106 users
Forked by 36 users
Languages   JavaScript 94.6% | Makefile 5.4%
🌐
GitHub
github.com › scurker › currency.js › releases
Releases · scurker/currency.js
May 19, 2021 - A javascript library for handling currencies. Contribute to scurker/currency.js development by creating an account on GitHub.
Author   scurker
🌐
GitHub
github.com › dinerojs › dinero.js
GitHub - dinerojs/dinero.js: Create, calculate, and format money in JavaScript and TypeScript · GitHub
Dinero.js lets you create, calculate, and format money safely in JavaScript and TypeScript.
Starred by 6.7K users
Forked by 199 users
Languages   TypeScript 99.8% | JavaScript 0.2%
🌐
GitHub
github.com › Alkaison › Currency-Converter
GitHub - Alkaison/Currency-Converter: This is a currency converter web application that fetches real-time data for currency conversion rates using HTML, CSS, and JavaScript.
The API used in this project is Exchange Rate API, which provides accurate and up-to-date currency conversion data. To integrate a different API, you can modify the JavaScript code in script.js file to make requests and handle the response according to the API documentation.
Starred by 10 users
Forked by 11 users
Languages   JavaScript 74.6% | CSS 14.6% | HTML 10.8% | JavaScript 74.6% | CSS 14.6% | HTML 10.8%
🌐
GitHub
github.com › scurker › currency.js › issues
Issues · scurker/currency.js
A javascript library for handling currencies. Contribute to scurker/currency.js development by creating an account on GitHub.
Author   scurker
🌐
GitHub
github.com › carolineschnapp › currencies
GitHub - carolineschnapp/currencies: Adds to the Currency object defined in Shopify's currencies.js library
While currencies.js allows you to convert a money amount from one currency to another, jquery.currencies.js provides a function that converts all money amounts on a web page and shows a formatted result, with currency symbol and descriptor.
Starred by 85 users
Forked by 109 users
Languages   JavaScript 100.0% | JavaScript 100.0%
🌐
GitHub
github.com › smirzaei › currency-formatter
GitHub - smirzaei/currency-formatter: [NOT ACTIVELY MAINTAINED] A simple Javascript utility that helps you to display currency properly · GitHub
July 28, 2023 - new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(100000000) // => "$100,000,000.00" new Intl.NumberFormat('en-US', { style: 'currency', currency: 'EUR' }).format(100000000) // => "€100,000,000.00" new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'USD' }).format(100000000) // => "100.000.000,00 $" new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'EUR' }).format(100000000) // => "100.000.000,00 €" new Intl.NumberFormat('fr-FR', { style: 'currency', currency: 'EUR' }).format(100000000) // => "100 000 000,00 €" With that being said use this library if you need: Your version of node.js doesn't come with the full-icu.
Starred by 213 users
Forked by 70 users
Languages   JavaScript