mirror of
https://github.com/flynx/colors.js.git
synced 2025-10-29 11:00:11 +00:00
592 B
592 B
colors.js - get color and style in your node.js console like what
var sys = require('sys');
var colors = require('./colors');
sys.puts('hello'.green); // outputs green text
sys.puts('i like cake and pies'.underline.red)j // outputs red underlined text
sys.puts('inverse the color'.inverse);