Answers for "javascript farbige konsole in node"

0

javascript farbige konsole in node

//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
Posted by: Guest on June-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language