Socket
Socket
Sign inDemoInstall

curs-bnr

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

curs-bnr

[![npm version](https://badge.fury.io/js/curs-bnr.svg)](https://badge.fury.io/js/curs-bnr) [![CI](https://github.com/crissdev/curs-bnr/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/crissdev/curs-bnr/actions/workflows/node.js.yml


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

CURS-BNR

npm version CI

Retrieve the BNR exchange rates for a specific date or the most recent BNR exchange rates.

Installation

npm install curs-bnr

How to use

Retrieve the most recent BNR exchange rates

const { getMostRecentExchangeRates } = require("curs-bnr");
const rates = await getMostRecentExchangeRates();
console.log(rates);
// [
//   { date: '2023-06-02', value: 4.9633, currency: 'EUR' },
//   { date: '2023-06-02', value: 5.7790, currency: 'GBP' }
//   ...
// ]

Retrieve the BNR exchange rates for a specific year

const { getExchangeRatesOfYear } = require("curs-bnr");
const rates = await getExchangeRatesOfYear(2023);
console.log(rates);
// [
//    { date: '2023-01-03', value: 4.9273, currency: 'EUR' },
//    { date: '2023-01-04', value: 4.9264, currency: 'EUR' },
//    ...
// ]

Retrieve the BNR exchange rates for a specific date

const { getExchangeRatesForDate } = require("curs-bnr");
const rates = await getExchangeRatesForDate('2023-06-12');
console.log(rates);
// [
//    { date: '2023-06-12', value: 4.9568, currency: 'EUR' },
//    { date: '2023-06-12', value: 5.7893, currency: 'GBP' },
//    { date: '2023-06-12', value: 3.3022, currency: 'JPY', multiplier: 100 },
//    ...
// ]

Configuration

By default, the API is configured to use the well-known BNR endpoints. If you want to use different endpoints, you can configure them via environment variables. Note that BNR_FX_RATES_OF_YEAR_URL must have the same structure as the default value, with the {year} placeholder.

BNR_FX_RATES_MOST_RECENT_URL="https://www.bnr.ro/nbrfxrates.xml"
BNR_FX_RATES_OF_YEAR_URL="https://bnr.ro/files/xml/years/nbrfxrates{year}.xml"

License

MIT © Cristian Trifan

FAQs

Package last updated on 04 Dec 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc