LoginSignup
2
2

More than 5 years have passed since last update.

めざせNode.jsライブラリマスター (15)colors

Posted at

【ライブラリ説明】

 コンソールの色を変更

【プログラム】

var colors = require('colors');

console.log('hello'.green);
console.log('i like cake and pies'.underline.red);
console.log('inverse the color'.inverse);
console.log('OMG Rainbows!'.rainbow);
console.log('Run the trap'.trap);

【結果】

color.png

【参考サイト】

 npm
 github

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2