Socket
Socket
Sign inDemoInstall

indicadores-chile

Package Overview
Dependencies
157
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    indicadores-chile

It allows to obtain the main economic indicators of Chile


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

indicadores-chile

It allows to obtain the main economic indicators of Chile

Installation

Install indicadores-chile with npm

  npm install indicadores-chile

Usage/Examples

Get all indicators from santander

const Indicators = require('indicadores-chile');

Indicators.getIndicators()
.then(data => console.log(data))
.catch(err => console.log(err));

Get a specific indicator

const Indicators = require('indicadores-chile');

Indicators.getIndicators('dolar')
.then(data => console.log(data))
.catch(err => console.log(err));

Response

[
  { code: '$', name: 'Dolar', value: '$886,34' },
  { code: '€', name: 'Euro', value: '$885,45' },
  {
    code: 'IPSA',
    name: 'Indice de Precio Selectivo de Acciones',
    value: '5.516,80'
  },
  { code: 'UF', name: 'Unidades de Fomento', value: '$33.958,13' },
  {
    code: 'UTM',
    name: 'Unidad Tributaria Mensual',
    value: '$59.595,00'
  },
  {
    code: 'IPC',
    name: 'Indice de Precios al Consumidor',
    value: '108,50'
  },
  { code: 'TPM', name: 'Tasa de Política Monetaria', value: '%10,75' }
]

FAQs

Last updated on 09 Sep 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc