Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@typeheim/fire-rx
Advanced tools
RxJS on steroids. Makes subjects behave like promises to support async/await and adds new useful classes.
StatefulSubject extends ReplaySubject from RxJS and adds Promise interface so that you can use async/await operators on it.
import { StatefulSubject } from '@typeheim/fire-rx'
let subject = new StatefulSubject<number>(1)
subject.next(5)
await subject // returns 5
subject.next(6)
await subject // returns 6
ValueSubject extends BehaviorSubject from RxJS and adds Promise interface so that you can use async/await operators on it.
import { ValueSubject } from '@typeheim/fire-rx'
let subject = new ValueSubject<number>(0)
subject.next(5)
await subject // returns 5
subject.next(6)
await subject // returns 6
ReactivePromise acts as a regular Promise but additionally let you use subscribe
and pipe
methods. ReactivePromise, like
StatefulSubject, buffers resolved value and can distribute it to multiple subscribers.
ReactivePromise is memory-safe and unsubscribe subscriptions once it's resolved.
import { ReactivePromise } from '@typeheim/fire-rx'
let promise = new ReactivePromise<number>()
promise.resolve(5)
await promise // returns 5
promise.subscribe(value => console.log(value)) // returns 5
//..............
let promise = new ReactivePromise<number>((resolve, reject) => {
resolve(5)
})
promise.subscribe(value => console.log(value)) // returns 5
SubscriptionsHub represents a hub of subscriptions that let you massively unsubscribe them at once. It might be useful to trigger at object destruction to free resources
import { SubscriptionsHub, StatefulSubject } from '@typeheim/fire-rx'
class Sample {
protected hub: SubscriptionsHub = new SubscriptionsHub()
doSomething() {
let subject = new StatefulSubject<number>()
this.hub.add(subject.subscribe(data => console.log(data)))
}
onDestroy() {
this.hub.unsubscribe()
}
}
DestroyEvent is a special reactive class that servers as a destruction notifier and can be used in pair with Fire subjects or with SubscriptionsHub
import { DestroyEvent, SubscriptionsHub, StatefulSubject } from '@typeheim/fire-rx'
class Sample {
protected destroyEvent: DestroyEvent = new DestroyEvent()
protected hub: SubscriptionsHub = new SubscriptionsHub(this.destroyEvent)
doSomething() {
let subject = new StatefulSubject<number>()
this.hub.add(subject.subscribe(data => console.log(data)))
let anotherSubject = new StatefulSubject<number>()
subject.until(this.destroyEvent).subscribe(data => console.log(data))
}
onDestroy() {
this.destroyEvent.emit()
}
}
FAQs
RxJS on steroids
The npm package @typeheim/fire-rx receives a total of 3 weekly downloads. As such, @typeheim/fire-rx popularity was classified as not popular.
We found that @typeheim/fire-rx demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.