
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
a fun and collateral way to print logs
Each statement you log is associated to a tag, and some tags can be associated to writable streams.
You can also file tags under other tags, so that all statements in a child tag are printed to the parent tag's writable stream!
var log = require('multilog');
log('Curse your sudden but inevitable betrayal!', 'stderr');
You get the following functions:
log(statement, tag) function prints statement in tag channel
(defaulting to the special "stdout" channel).log.pipe(parentTag, tag) makes all parentTag statements be on the tag
channel.log.unpipe(parentTag, tag) undoes the corresponding pipe operation.By default, pipes flow into void.
You can connect them to a writable stream
with log.pipe(tag, process.stdout).
You can also ask that their logs be retained with log.retain(tag).
You can then read from them (and from all tags that feeds to them)
through log.read(tag), and flush the memory with log.flush(tag).
Advanced use:
log.tags(statement, tagList) prints statement on multiple tags.log.stream(tag) returns a duplex Stream for a retained tag.There are two special tags, stdout and stderr, which directly flush their
statements to the corresponding pipeline.
FAQs
Tagged logging. Includes multi-streamed logging and filtering.
The npm package multilog receives a total of 3,689 weekly downloads. As such, multilog popularity was classified as popular.
We found that multilog demonstrated a not healthy version release cadence and project activity because the last version was released 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.