4.7.0 • Published 9 months ago
paddle-sdk v4.7.0
Paddle.com Node.js SDK
Welcome to the Paddle.com Node.js SDK documentation.
Installation
Install the SDK module using npm
:
$ npm install paddle-sdk
or using yarn
:
$ yarn add paddle-sdk
Usage
import { PaddleSDK } from 'paddle-sdk';
async function run() {
const client = new PaddleSDK(
'your-vendor-id-here',
'your-unique-api-key-here'
);
const products = await client.getProducts();
console.log(products);
const plans = await client.getProductPlans(123);
console.log(plans);
}
run();
For CommonJS:
const { PaddleSDK } = require('paddle-sdk');
Documentation
Read the documentation.
Change log
The change log can be found here: CHANGELOG.md.
Authors and license
Author: Valentin Agachi.
MIT License, see the included License.md file.
4.7.0
9 months ago
4.6.2
2 years ago
4.5.0
2 years ago
4.6.1
2 years ago
4.6.0
2 years ago
4.4.0
2 years ago
4.3.0
2 years ago
4.2.0
2 years ago
3.3.0
2 years ago
4.1.0
2 years ago
4.0.1
2 years ago
4.0.0
2 years ago
3.2.0
3 years ago
3.1.0
3 years ago
3.0.0
3 years ago
2.5.1
3 years ago
2.5.0
3 years ago
2.4.0
3 years ago
2.3.0
4 years ago
2.2.0
5 years ago
2.1.0
6 years ago
2.0.0
6 years ago
1.3.0
6 years ago
1.2.2
6 years ago
1.2.1
6 years ago
1.2.0
7 years ago
1.1.0
8 years ago
1.0.0
8 years ago