Created
January 1, 2021 18:26
-
-
Save magicdawn/febf83dbafdc8e56a3cb58deb44c62cf to your computer and use it in GitHub Desktop.
ascii logo for cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gradient = require('gradient-string') | |
const figlet = require('figlet') | |
console.log( | |
gradient.rainbow( | |
figlet.textSync('Hello World !', { | |
font: 'Standard', | |
horizontalLayout: 'full', | |
}) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment