Use ANSI escape codes, like following:
console.log('\x1b[33m%s\x1b[0m', 'COLORFUL');
\x1b[33m Sets the text color to orange
\x1b[33m
%s Represents the string you want to print
%s
\x1b[0m Resets the text formatting to the default
\x1b[0m