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

mastercard-access

v1.0.4

Published

Emita boletos facilmente utilizando apenas as suas credenciais do MeuAcesso Mastercard.

Downloads

22

Readme

Mastercard Access

Essa simples e prática biblioteca realiza a autenticação em sua conta Mastercard Acesso e enfim provê uma camada de APIs para emitir um boleto para você.

Que problema ela resolve?

O objetivo dessa biblioteca é proporcionar a você a possibilidade de emitir boletos utilizando sua conta Mastercard Acesso (https://www.meuacesso.com.br/).

Exemplo de uso

Para utilizar a biblioteca, apenas importe o módulo principal e então instancie a classe Mastercard com as suas credenciais de acesso (CPF e senha).

var Mastercard = require('mastercard-access');

(async () => {
  var mastercardApi = new Mastercard('56422670605', 'sua_senha_aqui');

  mastercardApi.on('connecting', () => {
    console.log('Connecting...');
  });

  mastercardApi.on('authenticated', async () => {
    console.log('Authenticated.');
    //Você pode encontrar esse token "legacy" fazendo a inspeção das requisições http na página do MeuAcesso.
    //Procure por um token passado na string de consulta na requisição de boletos.
    //Emita um boleto no navegador e veja o desencadeamento de requisições, você encontrará uma nesse estilo:
    //https://www.meuacesso.com.br/api-conta/v1/bankslip/legacy/52516440095406341690601024997161
    let boletoData = await mastercardApi.createBoleto(100, '52516440095406341690601024997161');
    console.log(boletoData);
  });

  mastercardApi.on('unauthorized', () => {
    console.log('Wrong credentials.');
  });

  mastercardApi.on('confirmation', async () => {
    console.log('Pending confirmation...');
    if (await mastercardApi.confirmCode('776234') == true) {
      console.log('Device confirmated with success.');
    } else {
      console.log('Error while confirmating the device.');
    }
  });
})();

O retorno da variável boletoData é um JSON semelhante ao seguinte:

{
  "link":"https://www.acessocard.com.br/BoletoConsulta/Boleto.aspx?guidBoleto={03CD32DA-ABDF-40A0-B1A8-F2B5465D6E5F}&imprime=1&numBoleto=62421634",
  "barCode":"32191.08344 43164.110918 00028.850302 1 84520000010290",
  "amount":102.9,
  "owingDate":"2020-11-27T23:44:57.7523063-03:00",
  "returnCrypto":"9hPiEuyMJ2K+2to9vhMA/SMJIA1o7MKTzTtPkKe7ImL/FoiRdqvGnrUdI/3lxt9JY/bU14u72FlihrLVFO6QvBvL55Aiwm8l2LZ5oai3Cgcdw+Xg0ynueUO2aCv8jWsyl54fiQgaQ9X9T2cypfNFktsHe46H7eAAtvWYcLkAXduJlSLUCseOFTJ0TrUU/MKV1/sreW3MkUgzHn5ln4Ybdgp55ePSWnoh8kYodj/yxCzuWUXmet5nq+bJ3JpKWelyKcE/Wp9ptbtC41SEkxD3Wg=="
}

A imagem do boleto será semelhante a seguinte, provavelmente emitida pelo ITAÚ: