
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
TypeScript SDK for Evelmo audit logging.
npm install evelmo
import { Evelmo } from 'evelmo';
const evelmo = new Evelmo({
apiKey: process.env.EVELMO_API_KEY!,
});
await evelmo.log({
action: 'user.invited',
actionType: 'C',
eventName: 'User Invited',
actor: { id: 'user_123', name: 'John' },
target: { id: 'user_456', type: 'user' },
});
new Evelmo(config)Create a new Evelmo client.
const evelmo = new Evelmo({
apiKey: 'vrt_live_...', // Required
baseUrl: 'https://...', // Optional, defaults to https://api.evelmo.com
});
evelmo.log(input)Create an audit log entry.
await evelmo.log({
action: 'user.invited', // Action identifier
actionType: 'C', // C=Create, R=Read, U=Update, D=Delete, A=Action
eventName: 'User Invited', // Human-readable event name
actor: { // Who performed the action
id: 'user_123',
name: 'John Doe', // Optional
email: 'john@example.com', // Optional
},
target: { // What was affected
id: 'user_456',
type: 'user',
name: 'Jane Smith', // Optional
},
context: { // Optional request context
ip: '192.168.1.1',
userAgent: 'Mozilla/5.0...',
location: 'US',
},
metadata: { // Optional additional data
role: 'admin',
team: 'engineering',
},
occurredAt: new Date(), // Optional, defaults to now
});
MIT
FAQs
TypeScript SDK for Evelmo audit logging
We found that evelmo 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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.