
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
@smartpay/sdk-node
Advanced tools
The Smartpay Nodejs SDK offers easy access to Smartpay API from applications written in Nodejs.
Nodejs v12+
npm install --save @smartpay/sdk-node
# or
yarn add @smartpay/sdk-node
The package needs to be configured with your own API keys, you can find them on your dashboard.
const Smartpay = require('@smartpay/sdk-node').default;
const smartpay = new Smartpay('<YOUR_SECRET_KEY>', {
publicKey: '<YOUR_PUBLIC_KEY>',
});
If you would like to know how Smartpay payment works, please see the payment flow for more details.
(async () => {
const payload = {
items: [
{
name: 'レブロン 18 LOW',
amount: 250,
currency: 'JPY',
quantity: 1,
},
],
shipping: {
line1: 'line1',
locality: 'locality',
postalCode: '123',
country: 'JP',
},
// Your internal reference of the order
reference: 'order_ref_1234567',
// Callback URLs
successUrl: 'https://docs.smartpay.co/example-pages/checkout-successful',
cancelUrl: 'https://docs.smartpay.co/example-pages/checkout-canceled',
test: true,
};
const session = await smartpay.createCheckoutSession(payload);
})();
The shape of checkout session payload is described in the docuement.
const sessionURL = smartpay.getSessionURL(session);
We also prepare a more real-world example for you to refer to.
Please check the reference document.
FAQs
Smartpay SDK NodeJS
We found that @smartpay/sdk-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.

Research
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.