Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 397 Bytes

File metadata and controls

19 lines (14 loc) · 397 Bytes

aha.js

Converts ANSI-colored terminal output into HTML.

A JS port of aha.

usage

var aha = require('aha'),
    child = require('child_process');

child.exec('git log --color=always', { encoding: 'hex' }, function(error, stdout, stderr) {
    // consumes and produces a Buffer
    process.stdout.write(aha(new Buffer(stdout, 'hex')));
});