Library which helps annotate/highlight gcc
output.
Installation | Usage | Releasing
$ npm install gcc-output-parser
var parser = require('gcc-output-parser');
console.log(parser.parseString(gccOutput));
example output:
[ { filename: 'HolidayButton.cpp',
line: 4,
column: 37,
type: 'fatal error',
text: 'ParticleButton/ParticleButton.h: No such file or directory',
codeWhitespace: ' ',
code: 'void onCheer(const char *topic, const char *data);',
adjustedColumn: 36 } ]
See the release process in the RELEASE.md file.