Get available v8 and Node.js flags.
const v8flags = require('v8flags');
v8flags(function (err, results) {
console.log(results);
// [ '--use_strict',
// '--es5_readonly',
// '--es52_globals',
// '--harmony_typeof',
// '--harmony_scoping',
// '--harmony_modules',
// '--harmony_proxies',
// '--harmony_collections',
// '--harmony',
// ...
});
Finds the available flags and calls the passed callback with any errors and an array of flag results.
The name of the cache file for flags.
The filepath location of the configfile
above.
MIT