1.0.1 • Published 4 years ago

replied v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

replied Travis CI Build Status

Log a message to the console and capture the stdin that is replied. Useful for ansi escape codes like Primary Device Attributes.

NPM Badge

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.