Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@depay/local-currency
Advanced tools
JavaScript library that detects user's local currency and provides functionalities to convert between multiple currencies.
yarn add @depay/local-currency
or
npm install --save @depay/local-currency
import { Currency } from '@depay/local-currency'
let currency = new Currency({ amount: 20 })
currency.toString()
// €22.32
Creates an instance of Currency
let currency = new Currency({ amount: 20 })
amount
sets the amount you want to convert into a currency string.
timeZone
will be automatically detected by the client, but can be provided to:
let currency = new Currency({ amount: 20, timeZone: 'Europe/Berlin' })
Converts a currency string into a formatted string:
let currency = new Currency({ amount: 20 })
currency.toString()
// €22.32
options
: accepts options object that will be forwarded to Intl.NumberFormat
new LocalCurrency.Currency({ amount: 20 }).toString({ minimumFractionDigits: 0 })
// $20
Converts USD into local currency:
let currency = await Currency.fromUSD({ amount: 20 })
currency.toString()
// €16.88
Gets rate for given from
and to
:
let rate = await Currency.rate({ from: 'EUR', to: 'GBP' })
// 1.1585365853658536
Gives you the local currency code:
Currency.getCode()
// EUR
e.g. in tests etc.:
window._LocalCurrencyCode = 'EUR'
yarn install
yarn dev
npm publish
FAQs
JavaScript library that detects user's local currency and provides functionalities to convert between multiple currencies.
The npm package @depay/local-currency receives a total of 328 weekly downloads. As such, @depay/local-currency popularity was classified as not popular.
We found that @depay/local-currency demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.