What is hook-std?
The hook-std npm package allows you to hook into and modify the standard output (stdout) and standard error (stderr) streams in Node.js. This can be useful for capturing logs, testing console output, or redirecting output for various purposes.
What are hook-std's main functionalities?
Capture stdout
This feature allows you to capture and manipulate the standard output (stdout) stream. The code sample demonstrates how to capture console.log output and process it.
const hookStd = require('hook-std');
(async () => {
const unhook = hookStd.stdout({silent: true}, output => {
console.log('Captured output:', output);
});
console.log('This will be captured');
await unhook();
})();
Capture stderr
This feature allows you to capture and manipulate the standard error (stderr) stream. The code sample demonstrates how to capture console.error output and process it.
const hookStd = require('hook-std');
(async () => {
const unhook = hookStd.stderr({silent: true}, output => {
console.error('Captured error:', output);
});
console.error('This error will be captured');
await unhook();
})();
Modify stdout
This feature allows you to modify the standard output (stdout) stream before it is printed to the console. The code sample demonstrates how to prepend a string to the console.log output.
const hookStd = require('hook-std');
(async () => {
const unhook = hookStd.stdout(output => {
return 'Modified output: ' + output;
});
console.log('This will be modified');
await unhook();
})();
Modify stderr
This feature allows you to modify the standard error (stderr) stream before it is printed to the console. The code sample demonstrates how to prepend a string to the console.error output.
const hookStd = require('hook-std');
(async () => {
const unhook = hookStd.stderr(output => {
return 'Modified error: ' + output;
});
console.error('This error will be modified');
await unhook();
})();
Other packages similar to hook-std
capture-console
The capture-console package provides similar functionality to hook-std by allowing you to capture and manipulate stdout and stderr streams. However, it offers a simpler API and fewer customization options compared to hook-std.
intercept-stdout
The intercept-stdout package allows you to intercept and modify stdout and stderr streams. It is similar to hook-std but focuses more on simplicity and ease of use, with fewer advanced features.
stdout-stderr
The stdout-stderr package provides utilities to capture and manipulate stdout and stderr streams. It is similar to hook-std but offers a more straightforward API and is designed to be easy to integrate into testing frameworks.
hook-std
Hook and modify stdout/stderr
Install
$ npm install --save hook-std
Usage
const assert = require('assert');
const hookStd = require('hook-std');
const unhook = hookStd.stdout(output => {
unhook();
assert.strictEqual(output.trim(), 'unicorn');
});
console.log('unicorn');
API
hookStd([options], callback)
Hook stdout and stderr.
Returns a function that unhooks stdout and stderr.
hookStd.stdout([options], callback)
Hook stdout.
Returns a function that unhooks stdout.
hookStd.stderr([options], callback)
Hook stderr.
Returns a function that unhooks stderr.
options
silent
Type: boolean
Default: true
Suppress stdout/stderr output.
once
Type: boolean
Default: false
Automatically unhooks after the first call.
callback
Type: Function
Receives stdout/stderr as the first argument. Return a string to modify it. Optionally, when in silent mode, you may return a boolean
to influence the return value of .write(...)
.
License
MIT © Sindre Sorhus