🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

consolemark

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

consolemark

try parse to something console con display.

0.0.4
latest
Source
npm
Version published
Maintainers
0
Created
Source

Use ansi color to render the output on console screen;

output

###Install

npm install consolemark

###File format

Consolemark can parse any text file, no matter its filename extension.

But for convenience reason, I recommend that you name the file with '.cmk' extension.

###Tags

Consolemark uses tags to render text, it is similar to html tag:

   <yellow>text1</yellow> <bold>text2</bold> <white>text3</white>
  • No nested tags, please ;).

See details at example/exmaple.cmk

####Current support tags

red, yellow, gree, white, cyan, magenta, blue, grey, bold, italic, underline, inverse

###Usage

####Require

var util = require('util');
cmk = require('consolemark');

// Asynchronous method
cmk.render('./path/to/cmk/file', function(err, data) {
  if (err) {throw err;}
  data.forEach(function(d) { // return a array of colorful string
    util.print(d);
  });
 });

 // Synchronous method
 var colorfule = cmk.renderSync('path/to/cmk/file');
 colorfule.forEach(function(c) {
   util.print(c);
 });

####Commandline tool

cmk path/to/file

FAQs

Package last updated on 16 Apr 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts