KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
colo
★ 45
Open GitHub ↗
simplest colorize module for Node.js
Download README (.md)
Explore Similar Repositories
angular-password
:
The most performant AngularJS directive for matching two password input fields
microblog
:
重写nodejs开发指南-微博系统(express版本4.9.0)
CSGO-aim-heatmaps
:
server plugin and processing code to generate aim heatmaps fo csgo
fuzzy-archer
:
Graphical gauges and history table generators for Weewx
api-presentation
:
The code for "EasyContacts", an API I created for a Ruby Meetup Talk.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
colo
?
Download (.md)
colo ========= [](https://travis-ci.org/yosuke-furukawa/colo) colo is simple colorize module. No dependencies. Node.js --------- node.js colorize module. ```javascript var colo = require("colo"); console.log(colo.red("colo colo")); console.log(colo.cyan.bold("colo colo")); console.log(colo.green.underline("colo colo")); console.log(colo.magenta.italic("colo colo")); console.log(colo.grey.inverse("colo colo")); ```  Browser ---------- ```html <script type='text/javascript' src="./colo/colo.js"></script> <script type='text/javascript'> colog(colo.red("colo colo")); colog(colo.cyan.bold("colo colo")); colog(colo.green.underline("colo colo")); colog(colo.magenta.italic.bold("colo colo")); colog(colo.grey.bold.italic.underline("colo colo")); </script> ``` 