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

bcra-statistics-sdk

v1.0.6

Published

This package provides a convenient way for Node.js applications to interact with the Statistics API of the Central Bank of Argentina (Banco Central de la República Argentina, BCRA).

Downloads

13

Readme

bcra-statistics-sdk: A Node.js Package for Interacting with the BCRA Statistics API

This package provides a convenient way for Node.js applications to interact with the Statistics API of the Central Bank of Argentina (Banco Central de la República Argentina, BCRA).

Installation

You can install the bcra-statistics-sdk package using one of the following package managers:

  • npm:
npm install bcra-statistics-sdk
  • yarn:
yarn add bcra-statistics-sdk
  • bun:
bun add bcra-statistics-sdk
  • pnpm:
pnpm add bcra-statistics-sdk

Usage

CommonJS:

async function main() {
  const { BCRAStatisticsClient } = await import('bcra-statistics-sdk');

  const client = new BCRAStatisticsClient();

  // Get all published variables
  const principalVariablesResponse = await client.getPrincipalVariables();
  console.log('Principal Variables:', JSON.stringify(principalVariablesResponse));

  // Get data for a specific variable between dates
  const variableDataResponse = await client.getVariableData(1, '2024-01-01', '2024-05-01');
  console.log('Variable Data:', JSON.stringify(variableDataResponse));
}

main().catch(console.error);

ESM and TypeScript:

import { BCRAStatisticsClient } from 'bcra-statistics-sdk';

const client = new BCRAStatisticsClient();

// ... (same usage as CommonJS)

API Reference

Classes

  • BCRAStatisticsClient: This class provides methods for interacting with the BCRA Statistics API.

Properties

Methods

  • getPrincipalVariables(): Promise<BCRAStatisticsResponse>: Retrieves all the published variables from the BCRA. Returns a promise that resolves to an object with properties:
    • status: The HTTP status code of the response.
    • errorMessages (optional): An array of error messages if the request failed.
    • results (optional): An array of BCRAStatisticsMainVar objects if the request was successful.
  • getVariableData(idVariable: number, fechaDesde: string, fechaHasta: string): Promise<BCRAStatisticsResponse>: Retrieves the values of a specific variable between the specified dates.
    • idVariable: The ID of the variable to retrieve data for.
    • fechaDesde: The starting date in the range (format yyyy-mm-dd).
    • fechaHasta: The ending date in the range (format yyyy-mm-dd).
    • Returns a promise that resolves to an object with properties:
      • status: The HTTP status code of the response.
      • errorMessages (optional): An array of error messages if the request failed.
      • results (optional): An array of BCRAStatisticsDataVar objects if the request was successful.

Interfaces

  • BCRAStatisticsResponse: An interface representing the response structure of the BCRA Statistics API.
    • status: The HTTP status code of the response.
    • errorMessages (optional): An array of error messages if the request failed.
    • results (optional): An array of data objects of type T if the request was successful.
  • BCRAStatisticsMainVar: An interface representing the structure of a variable object in the getPrincipalVariables response.
    • idVariable: The ID of the variable.
    • cdSerie: The series code of the variable.
    • descripcion: The description of the variable.
    • fecha: The date of the variable value.
    • valor: The value of the variable.
  • BCRAStatisticsDataVar: An interface representing the structure of a variable data object in the getVariableData response.
    • idVariable: The ID of the variable.
    • fecha: