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/signal
Advanced tools
Elegant powerful event system for handle global signals and states written in tiny TypeScript module.
@alwatr/signal
Elegant powerful event system for handle global signals and states written in tiny TypeScript module.
Every signal has own value and can be used as a advance state management like redux and recoil without the complexities and unnecessary facilities of those libraries.
AlwatrSignals
type helperdeclare global {
/**
* Global signals value type registry.
*/
interface AlwatrSignals {
readonly 'content-change': Record<string, number>;
}
/**
* Global request signal parameters types.
*/
interface AlwatrRequestSignals {
readonly 'content-change': number;
}
}
import {SignalInterface} from 'https://esm.run/@alwatr/signal';
const contentChangeSignal1 = new SignalInterface('content-change');
contentChangeSignal1.dispatch({a: 1, b: 2});
contentChangeSignal1.dispatch({a: 2, b: 3});
// Multiple dispatch debounced and last value dispatched after an animation frame.
contentChangeSignal1.dispatch({a: 3, b: 4});
import {SignalInterface} from 'https://esm.run/@alwatr/signal';
const contentChangeSignal2 = new SignalInterface('content-change'); // Same share signal as contentChangeSignal1
contentChangeSignal2.addListener((content) => {
console.log(content); // {a:3, b:4}
});
new SignalInterface(signal-name)
import {SignalInterface} from 'https://esm.run/@alwatr/signal';
const contentChangeSignal = new SignalInterface('content-change');
name
Get signal name.
Example:
console.log(contentChangeSignal.name); // 'content-change'
value
Get last dispatched signal value or undefined.
Example:
if (contentChangeSignal.dispatched) {
const content = contentChangeSignal.value!;
...
}
dispatched
Check signal dispatched before or not!
Example
if (contentChangeSignal.dispatched) {
// contentChangeSignal.value exist.
}
disabled
Disable signal, all dispatch's ignored (just value updated) and no more listeners will be called.
Example:
contentChangeSignal.disabled = true;
expire()
Expire the signal by clear last dispatched value.
dispatched and receivePrevious etc not work until new signal.
Example:
contentChangeSignal.dispatched; // true
contentChangeSignal.expire();
contentChangeSignal.value; // undefined
contentChangeSignal.dispatched; // false
setProvider(provider)
Defines the provider of the signal that will be called when the signal requested (addRequestSignalListener).
Example:
contentChangeSignal.setProvider(async (requestParam) => {
const content = await fetchNewContent(requestParam);
if (content != null) {
return content; // Dispatch signal 'content-change' with content.
} else {
// dispatch new signal: 'content-not-found'
}
});
request(requestParam)
Dispatch request signal and wait for answer (wait for new signal dispatched).
Resolved with signal value when new signal received (getNextSignalValue).
Example:
// dispatch request signal and wait for answer (wait for NEW signal).
const newContent = await contentChangeSignal.request({foo: 'bar'});
getNextSignalValue()
Resolved with signal value when new signal received.
Example:
// Wait for NEW signal received.
const newContent = await contentChangeSignal.getNextSignalValue();
getSignalValue()
Resolved with signal value when signal is ready.
Get signal value from last dispatched signal (if any) or wait for new signal received.
Example:
// get signal value from last dispatched signal (if any) or wait for a new signal to receive
const content = await contentChangeSignal.getSignalValue();
dispatch(signalValue)
Dispatch signal to all listeners.
Example:
contentChangeSignal.dispatch(content);
addListener(listener)
Adds a new listener to the signal.
Example:
const listener = contentChangeSignal.addListener((content) => console.log(content));
listener.disabled
Disable the listener, not called anymore.
Example:
const listener = contentChangeSignal.addListener((content) => console.log(content));
...
listener.disabled = true;
listener.remove()
Removes a listener from the signal.
Example:
const listener = contentChangeSignal.addListener((content) => console.log(content));
...
listener.remove();
FAQs
A simple and efficient TypeScript library for event-driven communication using signals.
The npm package @alwatr/signal receives a total of 117 weekly downloads. As such, @alwatr/signal popularity was classified as not popular.
We found that @alwatr/signal 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.