chalkline
v0.0.5
Published
chalkline draws a horizontal line in your console to help you easily debug and see what you're looking for
Readme
Draw a big chalkline in your terminal!
Install
npm install --save chalklineUsage
Chalkline extends the chalk package, so you can log any color line to the console.
var cl = require('chalkline');
cl.green();
cl.blue.bgMagenta();
cl.white();
cl.bgYellow.red();Colors and Background colors
Please see chalk's colors for a list of supported colors and background colors for your chalklines.
