Created
May 5, 2020 12:19
-
-
Save anmolsukki/2ab1851a01de5da923d2fb06319334e2 to your computer and use it in GitHub Desktop.
[ NodeJs ] Colored Console ( https://repl.it/@anmolsukki/ColoredConsole )
This file contains hidden or 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 chalk = require("chalk"); | |
| console.log(chalk.blue("Success!")) | |
| const blueMessage = chalk.yellow("Succes!") | |
| console.log(blueMessage) | |
| const boldYellow = chalk.bold.yellow("Succes!") | |
| console.log(boldYellow) | |
| const boldInverse = chalk.bold.inverse.blue("Succes!") | |
| console.log(boldInverse) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment