Utility for MeCu
Require this package via npm, then:
const MecuUtils = require('mecu-utils');
IMPORTANT: This package uses Destructuring assignments. These are supported out of the box only starting with Node V6. You can check compatibility through this table.
After that you can use the following functions:
const fs = require('fs');
fs.readFile(someFile.path, 'utf8', function (error, data) {
var entries = MecuUtils.parse(data);
}