mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-22 13:42:33 +01:00
6 lines
200 B
JavaScript
6 lines
200 B
JavaScript
const redis = require('redis').createClient(process.env.REDIS_URI)
|
|
|
|
const chan = process.env.PUB_CHANNEL
|
|
|
|
let i = 0
|
|
setInterval(_ => redis.publish(chan, JSON.stringify({ foo: 'bar', i: ++i })), 1000)
|