Socket
Book a DemoInstallSign in
Socket

dollar-quotation

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dollar-quotation

Seja avisado quando a cotação do dólar para sua moeda local estiver abaixo de determinado valor

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Rung ─ Dollar quotation extension

This is a demo extension to Rung showing how to be alerted when dollar in a specific currency be lower or equal to a specified value.

Full source

const { create, run } = require('rung-sdk');
const { OneOf, Money } = require('rung-sdk/dist/types');
const Bluebird = require('bluebird');
const agent = require('superagent');
const promisifyAgent = require('superagent-promise');
const { path } = require('ramda');

const request = promisifyAgent(agent, Bluebird);

function main(context, done) {
    const { currency, value } = context.params;

    return request.get('http://api.fixer.io/latest?base=USD')
        .then(path(['body', 'rates', currency]))
        .then(dollar => dollar <= value
            ? `Dollar is lower or equal to ${value}`
            : null)
        .then(done)
        .catch(() => done());
}

const params = {
    currency: {
        description: 'Currency to check dollar quotation',
        type: OneOf(['BRL', 'EUR']),
        default: 'BRL'
    },
    value: {
        description: 'When lower or equal to this, we\'ll tell you',
        type: Money,
        default: 3.0
    }
};

const app = create(main, { params });
app.run();

module.exports = app;

When you clone this repo and install the packages, you can do node index.js to start the Query Wizard via CLI. We integrate with a third-party API called fixer.io.

You'll get this screen and the result:

If you get a valid value as output, an alert would be generated. Otherwise, nothing would happen.

FAQs

Package last updated on 24 Apr 2017

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.