replied
v1.0.1
Published
Log a message to the console and capture the stdin that is replied.
Downloads
22
Maintainers
Readme
replied
Log a message to the console and capture the stdin that is replied. Useful for ansi escape codes like Primary Device Attributes.
Install
npm install replied
Usage
const replied = require("replied");
const ESC = "\u001B[";
(async () => {
const result = await replied(ESC + '0c'); // Primary device attributes
})();
API
replied(message, options?)
message
Type: string
The message to log.
options
Type: object
stdout
Type: WriteStream
Default: process.stdout
The stdout to log to.
stdin
Type: ReadStream
Default: process.stdin
The stdin to capture.