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

node-pagseguro2

v0.3.6

Published

Integração PagSeguro UOL com checkout transparente para servidores backend

Downloads

24

Readme

pagseguro-node2

Biblioteca de integração PagSeguro UOL com checkout transparente para Node.js

Instalação

npm install node-pagseguro2

Como Usar

Modo Produção

var PagSeguro = require('node-pagseguro2');

var payment = new PagSeguro({
   email: '[email protected]',
   token: 'ABCDEFGH12345678ABCDEFGH12345678',
   currency: '' //opcional - default BRL
})

ou

var PagSeguro = require('node-pagseguro2');

var payment = new PagSeguro({
   email: '[email protected]',
   token: 'ABCDEFGH12345678ABCDEFGH12345678',
   sandbox: 0,
   sandbox_email: '[email protected]'
})

Modo Sandbox

Para utilizar o modo Sandbox é necessário configurar com o e-mail obtido nas configurações do PagSeguro Sandbox e passar o valor 1 para o parâmetro 'sandbox'.

var payment = new PagSeguro({
   email: '[email protected]',
   token: 'ABCDEFGH12345678ABCDEFGH12345678',
   sandbox: 1,
   sandbox_email: '[email protected]'
})

Dados do Comprador (Sender)

payment.setSender({
   name: String,
   email: String,
   cpf_cnpj: String,
   area_code: String,
   phone: String,
   birth_date: String //formato dd/mm/yyyy
})

Dados do Proprietário do Cartão de Crédito (CreditCardHolder)

Utilizar essa função apenas se o proprietário do cartão de crédito for diferente do comprador

payment.setCreditCardHolder({
   name: String,
   cpf_cnpj: String,
   area_code: String,
   phone: String,
   birth_date: String //formato dd/mm/yyyy
})

Dados do Endereço de Entrega (Shipping)

payment.setShipping({
   street: String,
   number: String,
   district: String,
   city: String,
   state: String,
   postal_code: String,
   same_for_billing: Boolean //opcional, informar se o endereço de entrega for o mesmo do endereço de cobrança
})

Dados do Endereço de Cobrança (Billing)

Se a propriedade same_for_billing do endereço de entrega (shipping) não for definido, os dados de cobrança são obrigatórios

payment.setBilling({
   street: String,
   number: String,
   district: String,
   city: String,
   state: String,
   postal_code: String
})

Adicionar Item

payment.addItem({
   qtde: Number,
   value: Number,
   description: String
})

Obter ID de Sessão

payment.sessionId(function(err, session_id) {

});

Enviar Transação

No pagamento com cartão de crédito é preciso gerar o token do cartão de crédito a partir da biblioteca do PagSeguro (https://devs.pagseguro.uol.com.br/docs/checkout-web-usando-a-sua-tela#obter-token-de-cartao)

payment.sendTransaction({
   method: String, //'boleto' ou 'creditCard'
   credit_card_token: String, //token do cartão de crédito
   value: Number,
   installments: Number, //opcional, padrão 1
   extra_amount: Number, //opcional, padrão 0
   reference: String, //opcional, padrão vazio - string identificadora do pedido
   hash: String,          //senderHash gerado pela biblioteca do PagSeguro
   noInterestInstallmentQuantity: Number //opcional, nº de parcelas s/ juros oferecido ao pagador (juros serão cobrados ao vendedor)
}, function(err, data) {

});

Consultar status da transação

payment.transactionStatus(code: String, function(err, data) {
 
});

Consultar status da notificação

payment.notificationStatus(notificationCode: String, function(err, data) {
/**
  * data = {  
       transaction: String,
       statuscode: Number,
       reference: String,
       status: String,
       date: String
    }
  */
});