A standar way to create logos for CLIs using ASCII art and the package version.
npm install --save cli-logo
var logoCli = require('cli-logo'),
version = 'v' + require('./package.json').version,
description = require('./package.json').description,
logoConfig = {
"name": "CoolName",
"description": description,
"version": version
};
logoCli.print(logoConfig);
As optional parameters on the logoConfig you can use also:
"type":"Standard"
&"color":"green"
type
is the font type supported by figlet
color
is the color name supported by colors