[READ-ONLY] Mirror of https://github.com/probablykasper/colorboy-js. Easy terminal coloring for Node.js, macOS/Linux npmjs.com/package/colorboy
ansi cli color package terminal
0

Configure Feed

Select the types of activity you want to include in your feed.

added npm test

KH (May 23, 2018, 3:16 PM +0200) f2ca5eb5 958992df

+14
+3
package.json
··· 7 7 "type": "git", 8 8 "url": "git+https://github.com/SpectralKH/colorboy.git" 9 9 }, 10 + "scripts": { 11 + "test": "node test.js" 12 + }, 10 13 "keywords": [ 11 14 "terminal", 12 15 "colors",
+11
test.js
··· 1 + require("./index.js")(false, [ 2 + ["crazy", "\x1b[4m\x1b[35m\x1b[1m"], 3 + ["lightblue", "\x1b[1m\x1b[34m"], 4 + ]); 5 + console.log(`line1 6 + line2 7 + line3`.blue); 8 + 9 + console.log("this is colored".bold.underline.cyan); 10 + 11 + console.log("color".crazy,"boy".lightblue);