I want to run commands like
vim
with node.js. I tried it with require('child_process').exec
but the problem is that the output is done with console.log()
.
Is there a possibility to execute vim
within node.js?
I want to run commands like
vim
with node.js. I tried it with require('child_process').exec
but the problem is that the output is done with console.log()
.
Is there a possibility to execute vim
within node.js?