Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
paypal-simple
Advanced tools
A really simple PayPal API module. Too simple for most projects.
npm install paypal-simple
const PayPalSimple = require('paypal-simple');
const payPalSimple = new PayPalSimple("<Your clientID>", "<Your secret>", true);
const order = payPalSimple.createOrder(options);
creates the order, call this multiple times to duplicate an order
returns the approve url, give this to the user to approve payment
implicit when calling PayPalSimple.createOrder()
accessible after order.create()
is called. ID of the order.
amount the order is for
capture an order
refund an order
const PayPalSimple = require('paypal-simple');
const payPalSimple = new PayPalSimple("<Your clientID>", "<Your secret>", true);
const order = await payPalSimple.createOrder({
type: "min",
amount: "5.00",
return_url: "http://example.com/return",
cancel_url: "http://example.com/cancel",
});
const approve_url = order.approve_url;
// somehow give the user the approve_url and wait for user to comeback
order.capture().then(async _ => {
console.log("We got the cash! Refunding...");
}).catch(e => {
console.log("They didn't pay or an error occurred.")
});
FAQs
A really simple PayPal API module. Too simple for most projects.
The npm package paypal-simple receives a total of 5 weekly downloads. As such, paypal-simple popularity was classified as not popular.
We found that paypal-simple demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.