Last active
March 6, 2023 20:02
-
-
Save yostane/af136c4fc58abda2c62a320d3834a552 to your computer and use it in GitHub Desktop.
chalk demo (main.js in src/main.js)
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
| import chalk from "chalk"; | |
| console.log(chalk.blue("Hello") + " World" + chalk.red("!")); | |
| console.log(chalk.black.bgWhite.bold("Hello world!")); |
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
| { | |
| "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