
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@hazae41/disposer
Advanced tools
A wrapper for an object with a dispose function
npm i @hazae41/disposer
using d = new Disposer(something, () => { ... })
await using d = new AsyncDisposer(something, async () => { ... })
You can get the inner object with .inner
or .get()
and the dispose function with .dispose
This can be useful for waiting for multiple listeners, and remove all listeners when one of them is triggered
import { Future } from "@hazae41/future"
import { Disposer } from "@hazae41/disposer"
function waitA(): Disposer<Promise<"a">> {
const future = new Future<"a">()
const onevent = () => future.resolve("a")
this.addEventListener("a", onevent)
const off = () => this.removeEventListener("a", onevent)
return new Disposer(future.promise, off)
}
function waitB(): Disposer<Promise<"b">> {
const future = new Future<"b">()
const onevent = () => future.resolve()
this.addEventListener("b", onevent)
const off = () => this.removeEventListener("b", onevent)
return new Disposer(future.promise, off)
}
async function wait() {
using a = waitA()
using b = waitB()
const x: "a" | "b" = await Promise.race([a.get(), b.get()])
/**
* All listeners will be removed
*/
}
FAQs
Helpers for Disposable
We found that @hazae41/disposer 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.