Bones/node_modules/concurrently/test.js

8 lines
189 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
var chalk = require('chalk');
// style a string
console.log(chalk.blue('Hello world!'));
// combine styled and normal strings
console.log(chalk.blue('Hello') + 'World' + chalk.red('!'));