Skip to content

Instantly share code, notes, and snippets.

@yostane
Last active March 6, 2023 20:02
Show Gist options
  • Select an option

  • Save yostane/af136c4fc58abda2c62a320d3834a552 to your computer and use it in GitHub Desktop.

Select an option

Save yostane/af136c4fc58abda2c62a320d3834a552 to your computer and use it in GitHub Desktop.
chalk demo (main.js in src/main.js)
import chalk from "chalk";
console.log(chalk.blue("Hello") + " World" + chalk.red("!"));
console.log(chalk.black.bgWhite.bold("Hello world!"));
{
"name": "chalk-demo",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^5.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment