nodejs-currency-converter 1.3.1
Install from the command line:
Learn more about npm packages
$ npm install @paul-shuvo/nodejs-currency-converter@1.3.1
Install via package.json:
"@paul-shuvo/nodejs-currency-converter": "1.3.1"
About this version
A minimal currency converter library for NodeJS that works out of the box.
Announcement : For crypto currency conversion, check my other package Nodejs Crypto Converter.
This package can be installed using npm
npm install currency-converter-lt
or, yarn
yarn add currency-converter-lt
Import currency-converter-lt
.
const CC = require('currency-converter-lt')
Then instantiate with either the empty constructor
let currencyConverter = new CC()
Or, with a json object
let currencyConverter = new CC({from:"USD", to:"JPY", amount:100})
!!! Note: if you get incorrect conversion described in this issue then make sure you pass isDecimalComma: true
to the constructor as following:
let currencyConverter = new CC({from:"USD", to:"JPY", amount:100, isDecimalComma:true})
The convert method will return the conversion based on the last conversion rate and can be used as a promise.
currencyConverter.convert().then((response) => {
console.log(response) //or do something else
})
convert
can also take the amount as a parameter.
currencyConverter.convert(100).then((response) => {
console.log(response) //or do something else
})
To find the rates use the rates
method.
currencyConverter.rates().then((response) => {
console.log(response) //or do something else
})
Chaining is also supported.
currencyConverter.from("USD").to("GBP").amount(125).convert().then((response) => {
console.log(response) //or do something else
})
If any issues are found, they can be reported here.
This project is licensed under the MIT license.
Details
- nodejs-currency-converter
-
paul-shuvo
- over 2 years ago
- MIT
- 7 dependencies
Assets
- nodejs-currency-converter-1.3.1-npm.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0