Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
windowed-observable
Advanced tools
Messaging lib using a pub/sub observable scoped by namespaces.
windowed-observable is a library for messaging using Observables, making it easier to communicate multiple apps or parts of an app using the window. It exposes an Observable that behaves like a scoped Pub/Sub topic using namespaces.
npm install windowed-observable
# or
yarn add windowed-observable
An observable look like a pub/sub topic, there are scoped events and observers(listeners) on each namespace, and those namespaces can be cleared, and changed.
import { Observable } from 'windowed-observable';
const observable = new Observable('konoha');
observable.subscribe((ninja) => {
console.log(ninja)
})
observable.publish('Uchiha Shisui');
// > Uchiha Shisui
import { Observable } from 'windowed-observable';
const observable = new Observable('konoha');
observable.publish('Senju Tobirama');
observable.subscribe((ninja) => console.log(ninja), { latest: true });
// > Senju Tobirama
import { Observable } from 'windowed-observable';
const observable = new Observable('konoha');
const observer = (ninja) => console.log(ninja);
observable.subscribe(observer)
observable.publish('Uzumaki Naruto');
// > Uzumaki Naruto
// Unsubscribing
observable.unsubscribe(observer);
// Clearing
observable.clear();
Simple react usage
import React, { Component } from 'react';
import { Observable } from 'windowed-observable';
const observable = new Observable('konoha');
class NinjasList extends Component {
state: {
ninjas: []
}
componentDidMount() {
this.observer = (ninja) => {
const ninjas = this.state.ninjas.concat(ninja);
this.setState({ ninjas });
}
observable.subscribe(this.observer);
}
componentWillUnmount() {
observable.unsubscribe(this.observer);
}
render() {
...
// ninjas listing
}
}
import React from 'react';
import { Observable } from 'windowed-observable';
const observable = new Observable('konoha');
const handleClick = ninja => () => observable.publish(ninja);
const AddNinjaButton = ({ ninja }) => (
<button onClick={handleClick(ninja)}> Add ninja </button>
);
FAQs
windowed-observable
We found that windowed-observable 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.