ASCII art logo for burgerjs-cli
npm install burgerjs-logo
var logo = require('burgerjs-logo');
logo.print();
The color of the logo can be especify by param. The colors are the supported by the library colors
var logo = require('burgerjs-logo');
logo.print({'color': 'yellow'});
node -e "require('burgerjs-logo').print({'color': 'yellow'})"