README
turbo-logo
A simple ASCII art logo maker for the Terminal
Install
npm install turbo-logo
How to Use
var turboLogo = require('turbo-logo');
turboLogo('Hello World!!')
One line terminal test:
node -e 'require("turbo-logo")("Hello World!")'
What do I get?
Can I change the colors?
Of course..
node -e 'require("turbo-logo")("Hello World!", "red")'
Avialables colors: red
,green
,yellow
,blue
,white
,magenta
, cyan
, grey
, gray
& black
The colors are the supported by the library colors
Can I change the font?
Pff.. yeah
What if I only want the string as result?
well we can use the dataOnly
parameter:
node -e 'require("turbo-logo")("Hello World!", "red", { "font": "Ghost", "dataOnly": true})'