javascript farbige konsole dans le nœud

//make sure you have install colors, if not: npm install colors

const colors = require('colors');
console.log('hello'.green); // green text
console.log('I like cake and pies'.bold.red); // bold, red text 
console.log('All work and no play makes Jack a dull boy!'.rainbow); // rainbow
Fishi the fishy fish