0.4.1 • Published 9 years ago
turbo-logo v0.4.1
turbo-logo
A simple ASCII art logo maker for the Terminal
Install
npm install turbo-logoHow 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})'