Skip to content

JavaScript Package for Fetch data from google finance converter

Notifications You must be signed in to change notification settings

muhilham/google-currency

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Node.js - google

This module allows you to convert currency based on google finance converter by scraping the results. It does NOT use the Google API. PLEASE DO NOT ABUSE THIS.

This is not sponsored, supported, or affiliated with Google Inc.

Installation

npm install --save google-currency

API Example

This prints out the value from USD to IDR.

const converter = require('google-currency')

const options = {
  from: "USD",
  to: "IDR",
  amount: 1
}
converter(options).then(value => {
  console.log(value) // Return object
})

About

JavaScript Package for Fetch data from google finance converter

Resources

Stars

Watchers

Forks

Packages

No packages published