Tiny PayPal
The missing PayPal tool for Node
PayPal has literally A TON of documentation, but little to none is targeted for NodeJS users.
This is a simple tool to create payments using the modern and elegant version of PayPal, solving hours of research, trial and error.
Install the module
yarn add tiny-paypal
Initialize it
const PayPal = require('tiny-paypal');
const CLIENT_ID = "your-client-id-here";
const CLIENT_SECRET = "your-client-secret-here";
const SUCCESS_CALLBACK_URL = "https://www.your-store.com/success";
const CANCEL_CALLBACK_URL = "https://www.your-store.com/checkout";
const defaults = {
sandbox: true,
currency: "EUR",
successCallbackUrl: SUCCESS_CALLBACK_URL,
cancelCallbackUrl: CANCEL_CALLBACK_URL
};
const paypal = new PayPal(CLIENT_ID, CLIENT_SECRET, defaults);
Create a simple payment
If you just want to charge an amount of money, you can invoke this method:
try {
const payment = await paypal.createPayment({
amount: 10,
description: "My Shop Inc.",
shipping: 5,
discount: 4,
discountText: "Welcome discount",
currency: "EUR",
successCallbackUrl: "https://www.your-store.com/payment-success",
cancelCallbackUrl: "https://www.your-store.com/payment-canceled"
});
console.log("Payment ID:", payment.id);
console.log("Redirect URL", payment.redirect);
console.log("Info URL", payment.get);
console.log("Execute URL", payment.execute);
}
catch (error) {
console.error(error.message);
}
Create a payment based on your cart
To display a list of the items on the PayPal screen, you can use TinyPaypal like this:
try {
const payment = await paypal.createCartPayment({
cart: [{
name: "Product 1",
description: "Product 1 description here",
price: 3,
quantity: 10,
sku: '#1234'
}, {
name: "Product 2",
description: "Product 2 description here",
price: 4,
quantity: 5,
sku: '#1235'
}],
description: "My Shop Inc.",
shipping: 5,
discount: 4,
discountText: "Welcome discount",
currency: "EUR",
successCallbackUrl: "https://www.your-store.com/payment-success",
cancelCallbackUrl: "https://www.your-store.com/payment-canceled"
});
console.log("Payment ID:", payment.id);
console.log("Redirect URL", payment.redirect);
console.log("Info URL", payment.get);
console.log("Execute URL", payment.execute);
}
catch (error) {
console.error(error.message);
}
Redirect
Next, you need to redirect your client to result.redirect
. When the client confirms the payment, PayPal will redirect the browser to the SUCCESS_CALLBACK_URL
with three query string parameters: paymentId
, token
and PayerID
.
Get these parameters and execute the payment
try {
const result = await paypal.executePayment("payment-id", "token", "payer-id");
console.log("Payment result:", result);
}
catch (error) {
console.error(error.message);
}
This will log to the console something like:
Response: { id: 'PAY-1NA38651KW861730HK6HVNHQ',
intent: 'sale',
state: 'approved',
cart: '9H784395YC168205K',
payer:
{ payment_method: 'paypal',
status: 'VERIFIED',
payer_info:
{
email: 'buyer@company.pro',
first_name: 'Test',
last_name: 'Buyer',
payer_id: 'MEFWRPEQDM(2J',
shipping_address: [Object],
country_code: 'ES',
billing_address: [Object] } },
transactions:
[ { amount: [Object],
payee: [Object],
description: 'ACME Corporation Store',
item_list: [Object],
related_resources: [Object] } ],
create_time: '2016-07-20T11:45:47Z',
links:
[ { href: 'https://api.sandbox.paypal.com/v1/payments/payment/PAY-1NA38651KW861730HK6HVNHQ',
rel: 'self',
method: 'GET'
}
]
}
Useful Documentation and tools