
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
English | 中文
Pipelog is a small logging helper that writes formatted output into a named pipe (FIFO). It is designed for debugging workflows where you want to stream logs to another process without stdout/stderr interference. The project was originally built to debug the OpenCode plugin.
util.inspectbun add pipelogger
npm install pipelogger
pnpm add pipelogger
yarn add pipelogger
Create and remove the FIFO file manually in your shell, then write log entries from TypeScript.
mkfifo /tmp/pipelog-example
import { Pipelog } from "pipelogger";
const pipepath = "/tmp/pipelog-example";
const logger = Pipelog.factory(pipepath);
logger.log("Hello, Pipelog!");
logger.log({ scope: "pipe", ok: true });
Read from another process:
cat /tmp/pipelog-example
When you are done, remove the FIFO:
rm /tmp/pipelog-example
Pipelog.factory(pipepath, options?)Creates or returns a singleton instance.
pipepath: string, requiredoptions.encoding: BufferEncoding, optional (default utf8)Pipelog.getInstance()Returns the existing instance if it was created.
log(...message)Writes each payload as a new line with an ISO timestamp prefix.
destroy()Closes the underlying write stream and resets the singleton.
Install dependencies:
bun install
Run tests:
bun test ./src/test.ts
Build with Bun (minified):
bun build src/index.ts --target node --format esm --minify --outdir dist
MIT
Issues and pull requests are welcome. Please include tests or reproduction steps where relevant.
FAQs
Using named pipes for output debugging
We found that pipelogger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.