Launch $EDITOR in your program.
var editor = require('editor');
editor('beep.json', function (code, sig) {
console.log('finished editing with code ' + code);
});
$ node edit.js
finished editing with code 0
var editor = require('editor')
Launch the $EDITOR
(or opts.editor
) for file
.
When the editor exits, cb(code, sig)
fires.
With npm do:
npm install editor
MIT