Socket
Book a DemoInstallSign in
Socket

fifofile

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fifofile

Userland FIFO file

latest
Source
npmnpm
Version
2.0.3
Version published
Maintainers
1
Created
Source

fifofile

Userland FIFO file.

npm install fifofile

Usage

To consume, in any process

const FIFOFile = require('fifofile')

for await (const msg of new FIFOFile('/tmp/my-fifo')) {
  console.log('incoming:', msg)
}

To produce, in any process

const FIFOFile = require('fifofile')

const fifo = new FIFOFile('/tmp/my-fifo')

fifo.write(Buffer.from('a msg'))

License

Apache-2.0

FAQs

Package last updated on 05 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts