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 🙏

© 2026 – Pkg Stats / Ryan Hefner

cupiu-bnr

v0.1.0

Published

Official BNR (National Bank of Romania) exchange rates — zero dependencies. Live rates & history at cupiu.ro.

Readme

cupiu-bnr

Official BNR (National Bank of Romania) exchange rates in Python — zero dependencies.

Pulls the daily curs valutar BNR reference rates straight from the National Bank's public feed. Pure standard library, works on Python 3.8+, installs in one line. Built and maintained by the team behind cupiu.ro — where you can see the same rates with live charts and the full 2005→today history for humans.

👉 Live rates, charts & history: cupiu.ro

Install

npm install cupiu-bnr

Library

const bnr = require('cupiu-bnr');

const rates = await bnr.latest();        // today's official reference rates
console.log(rates.get('EUR').ronPerUnit); // 5.2411

// Convert between any two BNR-listed currencies (crossed via RON)
await bnr.convert(100, 'EUR', 'USD');

// History straight from the BNR archive
for (const day of await bnr.year(2024)) {
  console.log(day.date, day.get('EUR').ronPerUnit);
}

Rate values are kept as exact strings (rate.value) and normalise BNR's multiplier convention automatically, so HUF, JPY, etc. are always per-single-unit via ronPerUnit.

Command line

npx cupiu-bnr                     # all of today's rates
npx cupiu-bnr EUR                 # 1 EUR = 5.2411 RON  (2026-07-15)
npx cupiu-bnr convert 100 eur ron # 100 EUR = 524.11 RON

Why

BNR publishes one official reference set per banking day (~13:00 Bucharest). Every accounting workflow in Romania — PFA invoices (Art. 290 Cod fiscal), importers, bookkeeping — needs that exact number. cupiu-bnr gives you it programmatically; cupiu.ro gives you it in the browser with charts, per-currency pages and the historical archive.

Data & attribution

Source data © National Bank of Romania, used under their public data terms. This is an independent open-source client, not affiliated with the BNR. Maintained by cupiu.ro.

License

MIT — see LICENSE.