Skip to content

A deliberately super simple ansi terminal code wrapper.

License

Notifications You must be signed in to change notification settings

aliwatters/simple-ansi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

simple-ansi

Simply expose a minimal subset of the ansi terminal codes, for use manually.

usage

var ansi = require('simple-ansi');

var object = {
	name : "example",
	version : 1.0,
	options : {
		stuff : "more stuff"
	}
};

console.log(ansi.red, object, ansi.reset);

console.log(ansi.green + "some message" + ansi.reset);

// combine styles

console.log(ansi.green + ansi.bgBlue + ansi.bold, "Read this if you can!", ansi.reset);

Note: you remember to reset to return to the default terminal style.

Full list:

Formatting:

bold, underline, blink, reset

Foreground Colors:

gray, red, green, yellow, blue, magenta, cyan, white,

Background Colors:

bgGray, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan,

About

A deliberately super simple ansi terminal code wrapper.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published