Website | Source
import { EventBroker } from '@glandjs/events'; const gland = new EventBroker({ name:"Glandjs" }); gland.on("great", (text) => { console.log("Hello", text); }); gland.emit("great", 'world');
Last modified 17 October 2025