
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.
console-dialog
Advanced tools
Create a message dialog in node
$ npm i console-dialog
const consoleDialog = require('console-dialog');
console.log(consoleDialog('Hello!').render());
/**
┌────────┐
│ Hello! │
└────────┘
*/
let dialog = consoleDialog().width(20);
let msg = [];
msg.push(`this is dialog with`);
msg.push(`multiple lines`);
dialog.append(msg);
console.log(dialog.render());
/**
┌─────────────────────┐
│ this is dialog with │
│ multiple lines │
└─────────────────────┘
*/
let dialog = consoleDialog().width(20);
dialog.append(`this is dialog with`);
dialog.append(`multiple lines`);
console.log(dialog.render());
/**
┌─────────────────────┐
│ this is dialog with │
│ multiple lines │
└─────────────────────┘
*/
let dialog = consoleDialog().width(40);
dialog.header(`how text can be align`, {align: `center`});
dialog.footer(`using align option`);
dialog.append(`left`);
dialog.append(`center`, {align: `center`});
dialog.append(`right`, {align: `right`});
console.log(dialog.render());
/*
╒═════════════════════════════════════════╕
│ how text can be align │
╞═════════════════════════════════════════╡
│ left │
│ center │
│ right │
╞═════════════════════════════════════════╡
│ using align option │
╘═════════════════════════════════════════╛
*/
let dialog = consoleDialog();
dialog.append('dialog with border weight with options');
console.log(dialog.render({weight: 'bold'}));
console.log(dialog.render({weight: 'double'}));
console.log(dialog.render({corner: 'round'}));
/*
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ dialog with border weight with options ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
╔════════════════════════════════════════╗
║ dialog with border weight with options ║
╚════════════════════════════════════════╝
╭────────────────────────────────────────╮
│ dialog with border weight with options │
╰────────────────────────────────────────╯
*/
dialog = consoleDialog();
dialog.append(`the length of this message is greater than the width of the dialog.`);
dialog.append(`so it's got wrapped down to a new line.`);
console.log(dialog.render({width: 24}));
/**
┌─────────────────────────┐
│ the length of this mess │
│ age is greater than the │
│ width of the dialog. │
│ so it's got wrapped dow │
│ n to a new line. │
└─────────────────────────┘
*/
dialog.header(`but the dynamic-width option will make dialog more flexible up to the messages`)
console.log(dialog.render({width: `dynamic`}));
/**
╒════════════════════════════════════════════════════════════════════════════════╕
│ but the dynamic-width option will make dialog more flexible up to the messages │
╞════════════════════════════════════════════════════════════════════════════════╡
│ the length of this message is greater than the width of the dialog. │
│ so it's got wrapped down to a new line. │
└────────────────────────────────────────────────────────────────────────────────┘
*/
weight - Changes Border line style."single""single" , "double" , "bold""bold" - Dialog must not have header or footercorner - Changes border corner style."round""round" - Dialog must not have header or footerwidth - Enable flexible width based on maximum length of lines.dynamicdynamicdynamic - The maximum length of lines must be greater than the declared dialog width.align - Align appended lines in the dialog."left""left" , "center", "right""center", "right" - The length of lines must be less than the declared dialog width.FAQs
Create a message dialog in node
The npm package console-dialog receives a total of 23 weekly downloads. As such, console-dialog popularity was classified as not popular.
We found that console-dialog 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
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.