Skip to content

Instantly share code, notes, and snippets.

@anmolsukki
Created May 5, 2020 12:19
Show Gist options
  • Select an option

  • Save anmolsukki/2ab1851a01de5da923d2fb06319334e2 to your computer and use it in GitHub Desktop.

Select an option

Save anmolsukki/2ab1851a01de5da923d2fb06319334e2 to your computer and use it in GitHub Desktop.
[ NodeJs ] Colored Console ( https://repl.it/@anmolsukki/ColoredConsole )
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