Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@alwatr/observable
Advanced tools
A lightweight and flexible TypeScript library for implementing the observer pattern (similar to signals) with events, subscriptions, and convenient features.
A lightweight and flexible TypeScript library for implementing the observer pattern (similar to signals) with events, subscriptions, and convenient features.
once
, priority
, and receivePrevious
.npm install @alwatr/observable
AlwatrObservable
constructor(config: {name: string; loggerPrefix?: string})
: Creates a new AlwatrObservable
instance.
config.name
: The name of the signal (used for logging).config.loggerPrefix
: Optional prefix for log messages.subscribe(listenerCallback: ListenerCallback<this, T>, options: SubscribeOptions = {}): SubscribeResult
: Subscribes to the signal.
listenerCallback
: The function to be called when an event is emitted.options
:
once
: If true
, the listener will be automatically unsubscribed after the first event.priority
: If true
, the listener will be executed before other listeners.receivePrevious
: If true
, the listener will be immediately called with the last emitted event (if available).disabled
: If true
, the listener will not be executed.unsubscribe(listenerCallback: ListenerCallback<this, T>)
: Unsubscribes a listener from the signal.
notify_(message: T)
: Emits an event to all subscribers.
message
: The data to be sent to the subscribers.clearMessage_()
: Clears the current message without notifying subscribers.
untilNewNotify_()
: Returns a Promise that resolves with the next emitted event.
The following companies, organizations, and individuals support Nitrobase ongoing maintenance and development. Become a Sponsor to get your logo on our README and website.
This project is licensed under the AGPL-3.0 License.
Contributions are welcome! Please feel free to submit issues and pull requests.
FAQs
A lightweight and flexible TypeScript library for implementing the observer pattern (similar to signals) with events, subscriptions, and convenient features.
We found that @alwatr/observable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.