Skip to content

[DEPRECATED] Real time currency converter based on the google money converter. WIP

Notifications You must be signed in to change notification settings

aromeronavia/conversio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[DEPRECATED] Conversio

Conversio is an open source tool for money conversion using the Google money converter.

A simple snippet of how to use:

const {convert} = require('currencio');
convert({amount: 1, from: 'USD', to: 'MXN'}, callback);

The response format:

{
  amount: 1,
  converted: 19.2035,
  from: 'USD',
  to: 'MXN'
}

You can also obtain the exchange rate between two currencies:

const {getExchangeRate} = require('currencio');
getExchangeRate({from: 'USD', to: 'MXN'}, callback);

About

[DEPRECATED] Real time currency converter based on the google money converter. WIP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published