
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
FastPay for Node.js.
Install via npm.
$ npm install fastpay
All functions of fastpay
object passes the data via callbacks.
Callbacks has the error and response data via the request module.
var fastpay = require("fastpay");
fastpay("YOUR_API_KEY", function (err, res, body) {
if (!err && res.statusCode === 200) {
console.log(body);
}
});
fastpay("YOUR_API_KEY").create({
amount: 1000,
card: "YOUR_CARD_ID"
}, function (err, res, body) {
if (!err && res.statusCode === 200) {
console.log(body);
}
});
fastpay("YOUR_API_KEY").retrieve("YOUR_CHARGE_ID", function (err, res, body) {
if (!err && res.statusCode === 200) {
console.log(body);
}
});
fastpay("YOUR_API_KEY").refund("YOUR_CHARGE_ID", function (err, res, body) {
if (!err && res.statusCode === 200) {
console.log(body);
}
});
fastpay("YOUR_API_KEY").capture("YOUR_CHARGE_ID", function (err, res, body) {
if (!err && res.statusCode === 200) {
console.log(body);
}
});
fastpay("YOUR_API_KEY").all({
count: 1
}, function (err, res, body) {
if (!err && res.statusCode === 200) {
console.log(body);
}
});
All the stuff in FastPay official documents.
npm test
runs liting and testing scripts.
$ npm install
$ npm test
Finally the code coverage report will be generated.
See the CONTRIBUTING.md.
Ryuichi Okumura |
This module is available under the BSD license.
The request module is available under the Apache License 2.0.
FAQs
FastPay for Node.js
The npm package fastpay receives a total of 2 weekly downloads. As such, fastpay popularity was classified as not popular.
We found that fastpay 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.