fp/services/tracker-helper/fifo-helper.ts
CJ_Clippy b52fe97da3
Some checks failed
ci / build (push) Failing after 55s
ci / Tests & Checks (push) Failing after 25s
get test credentials from env
2025-02-15 04:31:20 -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()