npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

forex-rates

v1.0.3

Published

Exchange rates API client which provides easy to use functions for exchanging currencies

Downloads

92

Readme

Forex Rates

NPM Version

This is an unofficial client for the Forex Rates API and provides easy to use and implement, promise based functionality to retrieve forex rates including historical data from the API and return it in an easy to use model. All functionality provided by the API has been encapsulated.

The codebase is covered by unit tests and has code analysis through sonar to help ensure no bugs creep in. There is documentation illustrating implementation of the code and how to get started should you wish to contribute.

Contents

Getting Started

This is how to get a copy of this working locally. The only requirement is that Node is installed on the base machine.

$ git clone [email protected]:apiforfun/forexrates-nodejs.git
$ cd forexrates-nodejs
$ npm i

Installation

Install this Forex Rates API client via npm.

$ npm i --save forex-rates

This project only has a single dependency.

Usage

Import the file ForexExchangeRate client and instantiate a new instance.

import { ForexExchangeRate } from 'forex-rates'

const forexExchangeRate = new ForexExchangeRate()

.setBaseCurrency(string)

Set the base currency that the returned currencies will be converted against. You can use the existing enumerated list of supported currencies to select this base currency.

import { Currencies } from 'forex-rates'

forexExchangeRate.setBaseCurrency(Currencies.GBP)

.setCurrencies(array)

Set the currencies you want to be returned from the API. These currency will be converted against the currency stipulated as the base above, alternatively it will default to have a base of USD. Use the existing enumerated list of supported currencies to populate the requested list of currencies.

import { Currencies } from 'forex-rates'

const currencies: Currencies[] = [
    Currencies.USD,
    Currencies.ZAR
]

forexExchangeRate.setCurrencies(currencies)

.setDate(Date)

Set the date for which you want the exchange rate data from. This can be any date as far back to 1999. It accepts a standard JavaScript Date object.

const date = new Date('2012-01-31')

forexExchangeRate.setDate(date)

.setHistoricalDate(Date, Date)

Set the historical dates for which the forex rates should be returned. Note that these rates may not be available for each day in the requested time period. The API provides historical data dated back to 1999.

const endDate = new Date('1999-01-04')
const startDate = new Date('1999-01-01')

forexExchangeRate.setHistoricalDate(startDate, endDate)

.getRates()

Generates and submits the request to the API and returns a typed response object within a promise containing the data that has been requested.

import { ForexExchangeResponse } from 'forex-rates'

forexExchangeRate.getRates()
  .then((response: ForexExchangeResponse) => console.log({
    base: response.base,
    date: response.date,
    rates: response.rates
  }))

Chaining Setters

All of the appropriate setters contained in this library return the instance of the ForexExchangeRate client that the method call is being executed on. This means that you can chain the setters for an easier and cleaner implementation.

import { ForexExchangeRate, Currencies, ForexExchangeResponse } from 'forex-rates'

const date = new Date('2012-01-30')
const currencies: Currencies[] = [
    Currencies.USD,
    Currencies.ZAR
]

const forexExchangeRate = new ForexExchangeRate()

forexExchangeRate.setBaseCurrency(Currencies.GBP)
  .setCurrencies(currencies)
  .setDate(date)
  .getRates()
  .then((response: ForexExchangeResponse) => console.log({
    base: response.base,
    date: response.date,
    rates: response.rates
  }))

Responses

There is a standardised response type of ForexExchangeResponse which is altered depending on the request. In the event of querying historical data, the rates within ForexExchangeResponse will contain the type of HistoricalRates whereas any other request will contain the type of Rates.

Supported Currencies

Only currencies listed on the European Central Bank are supported by this client at the moment. The following is a list of the currently available and supported currencies. The rates of these currencies are updated periodically.

Australian Dollar (AUD) Brazilian Real (BRL) British Pound Sterline (GBP) Bulgarian Lev (BGN) Canadian Dollar (CAD) Chinese Yuan Renminbi (CNY) Croatian Kuna (HRK) Czech Koruna (CZK) Danish Krone (DKK) Euro (EUR) Hong Kong Dollar (HKD) Hungarian Forint (HUF) Icelandic Króna (ISK) Indonesian Rupiah (IDR) Indian Rupee (INR) Israeli Shekel (ILS) Japanese Yen (JPY) Malaysian Ringgit (MYR) Mexican Peso (MXN) New Zealand Dollar (NZD) Norwegian Krone (NOK) Philippine Peso (PHP) Polish Złoty (PLN) Romanian Leu (RON) Russian Rouble (RUB) Singapore Dollar (SGD) South African Rand (ZAR) South Korean Won (KRW) Swedish Krona (SEK) Swiss Franc (CHF) Thai Baht (THB) Turkish Lira (TRY) US Dollar (USD)

Running Tests

To run tests, you should be able to simply run be able to run the following.

$ npm run test
$ npm run coverage

The testing framework used is Mocha. Chai, Chai-as-promised, nyc and nock are used for assertions, coverage reporting and mocking external requests, respectively. Should you make a change request, please ensure that the new changes are appropriately covered by accompanying unit tests.

Issues

If you find any problems while working with this library, please log an issue here so that development can begin to rectify the error.

Contributions

This project is completely open source and as such, you are invited to make contributions. Fork the project, make some changes and make the pull request. Should you have any feedback regarding the functionality, please don't hesitate to open an issue so this can be resolved. Please ensure that any pull requests have unit tests that cover any additional functionality.

License

MIT License