0
我想編寫這個包,它必須在裏面運行一個程序 - 帶有參數。跨平臺更好,但僅限Linux的解決方案已經夠用了。如何從Atom Package執行本機二進制文件?
如何在Atom Editor中做到這一點?
我想編寫這個包,它必須在裏面運行一個程序 - 帶有參數。跨平臺更好,但僅限Linux的解決方案已經夠用了。如何從Atom Package執行本機二進制文件?
如何在Atom Editor中做到這一點?
使用BufferedProcess產生你想要的任何二進制文件。
{BufferedProcess} = require 'atom'
command = 'ps'
args = ['-ef']
stdout = (output) -> console.log(output)
exit = (code) -> console.log("ps -ef exited with #{code}")
process = new BufferedProcess({command, args, stdout, exit})