fp/services/tracker-helper/fifo-helper.ts
CJ_Clippy 30be956029
Some checks failed
ci / build (push) Failing after 22m11s
ci / Tests & Checks (push) Failing after 9m39s
disable caddy
2025-02-21 23:32:48 -08:00

11 lines
185 B
TypeScript

// fifo-helper.ts
async function main() {
const fifo = Bun.file("/tmp/adder.fifo")
// Bun.write(fifo, "testing 123\n")
const txt = await fifo.text()
console.log(txt)
}
main()