
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@abskmj/exchangeratesapi
Advanced tools
Javascript client for exchangeratesapi.io
Exchangerates API is the most scalable API for current and historical exchange rates with unmatched performance. API documentation at exchangeratesapi.io
npm install @abskmj/exchangeratesapi
const exchange = require('@abskmj/exchangeratesapi')
const response = await exchange.symbols({ access_key })
const exchange = require('@abskmj/exchangeratesapi')
const response = await exchange.rates({ access_key })
const exchange = require('@abskmj/exchangeratesapi')
const response = await exchange.rates({ access_key, date })
const exchange = require('@abskmj/exchangeratesapi')
const response = await exchange.convert({ access_key, from: 'USD', to: 'EUR', amount: 1 })
const exchange = require('@abskmj/exchangeratesapi')
const response = await exchange.timeseries({ access_key, start_at: '2020-01-01', end_at: '2020-03-31'})
const exchange = require('@abskmj/exchangeratesapi')
const response = await exchange.fluctuation({ access_key, start_at: '2020-01-01', end_at: '2020-03-31'})
// promise
exchange.rates().then(response =>{
console.log(response.data);
});
// callback
exchange.rates({}, (err, response) => {
if(err) return console.error(err)
console.log(response.data)
})
Documentation is available at API.md
Head over to the issues tab at github.com to report a bug or suggest an improvement. Feel free to contribute to the code or documentation by creating a pull request.
If you find the project interesting or helpful, please consider sponsoring or supporting it at github.com.
FAQs
Node client for exchangeratesapi.io
We found that @abskmj/exchangeratesapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.