Skip to content
This repository was archived by the owner on Jun 23, 2019. It is now read-only.

Releases: okuryu/node-fastpay

Release list

1.1.0

Choose a tag to compare

@okuryu okuryu released this 09 Apr 12:57

More simple initialization. You can initialize by pass the API key string to fastpay() function.

fastpay("YOUR_API_KEY", function (err, res, body) {
    if (!err && res.statusCode === 200) {
        console.log(body);
    }
});

Also, passing the option object works for backward compatibility as follows.

fastpay({
    apiKey: "YOUR_API_KEY"
}, function (err, res, body) {
    if (!err && res.statusCode === 200) {
        console.log(body);
    }
});

1.0.0

Choose a tag to compare

@okuryu okuryu released this 06 Apr 14:08

First publish FastPay module for Node.js.