UNPKG

uds-pubsub

Version:

Lightweight Unix Domain Socket pub/sub library for Node.js

9 lines (6 loc) 234 B
import { createClient } from '../src/index.js' const client = createClient({ name: 'weather-display' }) await client.connect() client.subscribe('weather/temperature', (payload) => { console.log('📡 Weather update:', payload) })