Welcome to the Paddle.com Node.js SDK documentation.
Install the SDK module using npm
:
$ npm install paddle-sdk-dplnk
or using yarn
:
$ yarn add paddle-sdk-dplnk
Using Promise
:
const PaddleSDK = require('paddle-sdk-dplnk');
const client = new PaddleSDK('your-vendor-id-here', 'your-auth-code-here');
client.getProducts()
.then(console.log)
.then(() => client.getProductPlans(123))
.then(console.log);
Using async
/await
:
const PaddleSDK = require('paddle-sdk-dplnk');
async function run() {
const client = new PaddleSDK('your-vendor-id-here', 'your-auth-code-here');
const products = await client.getProducts();
console.log(products);
const plans = await client.getProductPlans(123);
console.log(plans);
}
run();
See the JSDoc markdown documentation in Documentation.md.
The change log can be found here: CHANGELOG.md.
- Rewrite to typescript.
- Add missing endpoint
Author: Dmitry Dergunov.
Forked from: Valentin Agachi.
MIT License, see the included License.md file.