Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eldoy/norgesbank

Norges Bank API Currency Conversion
https://github.com/eldoy/norgesbank

Last synced: 6 days ago
JSON representation

Norges Bank API Currency Conversion

Awesome Lists containing this project

README

        

# Norges Bank

Currently just fetches the exchange rate between two currencies at a given date.

### Install

```
npm i norgesbank
```

### Usage

```js
const norgesbank = require('norgesbank')

const options = {
to: 'NOK',
from: 'USD',
date: new Date() - 1 // yesterday is the default
}

const rate = norgesbank(options)
// 9.3453
```

MIT Licensed. Enjoy!