
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@travetto/context
Advanced tools
Async-aware state management, maintaining context across asynchronous calls.
Install: @travetto/context
npm install @travetto/context
# or
yarn add @travetto/context
This module provides a wrapper around node's async_hooks to maintain context across async calls. This is generally used for retaining contextual user information at various levels of async flow.
The most common way of utilizing the context, is via the WithAsyncContext decorator. The decorator requires the class it's being used in, to have a AsyncContext member, as it is the source of the contextual information.
The decorator will load the context on invocation, and will keep the context active during the entire asynchronous call chain.
Code: Usage of context within a service
import { AsyncContext, WithAsyncContext } from '@travetto/context';
export class ContextAwareService {
constructor(public context: AsyncContext) { }
@WithAsyncContext()
async complexOperator(name: string) {
this.context.set({ name });
await this.additionalOp('extra');
await this.finalOp();
}
async additionalOp(additional: string) {
const { name } = this.context.get();
this.context.set({ name: `${name} ${additional}` });
}
async finalOp() {
const { name } = this.context.get();
// Use name
return name;
}
}
The decorator also allows for a priming of the contextual information. This is generally useful for system generated operations that are not initiated by a user.
Code: Usage of context within a service
import { AsyncContext, WithAsyncContext } from '@travetto/context';
export class SystemInitiatedContext {
constructor(public context: AsyncContext) { }
@WithAsyncContext({
user: 'system',
uid: 20
})
async runJob(name: string) {
console.log('Running', { user: this.context.get().user, jobName: name });
}
}
FAQs
Async-aware state management, maintaining context across asynchronous calls.
The npm package @travetto/context receives a total of 345 weekly downloads. As such, @travetto/context popularity was classified as not popular.
We found that @travetto/context 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.