
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.
Node.js/TypeScript client library for the RuSender.ru Email API.
npm install rusenderjs
# or
pnpm add rusenderjs
# or
bun add rusenderjs
import { RuSenderClient } from 'rusenderjs';
const client = new RuSenderClient('YOUR_API_KEY');
try {
const response = await client.sendMail({
to: {
email: 'recipient@example.com',
name: 'Recipient Name'
},
from: {
email: 'sender@example.com', // Must be a verified sender in RuSender
name: 'Sender Name'
},
subject: 'Hello from RuSender',
html: '<h1>Hello!</h1><p>This is a test email.</p>',
text: 'Hello! This is a test email.',
// Optional
previewTitle: 'Brief preview text',
attachments: [
{ 'document.pdf': 'base64_encoded_content_here...' }
]
});
console.log('Email sent:', response.uuid);
} catch (error) {
console.error('Error sending email:', error);
}
try {
const response = await client.sendByTemplate({
to: { email: 'recipient@example.com' },
from: { email: 'sender@example.com' },
subject: 'Template Email',
idTemplateMailUser: 12345, // Your template ID
params: {
variable1: 'value1',
variable2: 'value2'
}
});
console.log('Template email sent:', response.uuid);
} catch (error) {
console.error('Error:', error);
}
ISC
FAQs
Node.js/TypeScript client library for RuSender API
We found that rusenderjs 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.