
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
stackverify
Advanced tools
A simple Node.js SDK to interact with the StackVerify API for sending SMS and checking message status.
npm install stackverify
Get your apikey .
import StackVerify from "stackverify";
// Initialize the SDK
const stack = new StackVerify({ apiKey: "YOUR_API_KEY" });
// Send an SMS and check status
async function main() {
try {
const response = await stack.sendSMS({
recipients: ["+1234567890"], // array of phone numbers
body: "Hello! This is a test message.",
sender_id: "SMS"
});
console.log("SMS sent:", response);
const status = await stack.getSMSStatus(response.message_id);
console.log("SMS status:", status);
} catch (err) {
console.error("Error:", err.message);
}
}
main();
new StackVerify({ apiKey, baseUrl })
apiKey (string) — Your StackVerify API key (required)
baseUrl (string) — API base URL (default: https://stackverify.site/api/v1)
sendSMS({ recipients, body, sender_id })
Send an SMS.
recipients — array of phone numbers (required)
body — SMS message text (required)
sender_id — your sender ID (required)
getSMSStatus(messageId)
Get the status of a sent message.
messageId — ID returned by sendSMS (required)
FAQs
Node.js SDK for StackVerify API (SMS, Email, WhatsApp)
The npm package stackverify receives a total of 0 weekly downloads. As such, stackverify popularity was classified as not popular.
We found that stackverify demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.