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');


Tags: library   framework   nodejs   distribution   event-driven  

Last modified 17 October 2025