Node Js Command Line
Node Js Command Line
Is it possible to do command line codes in node js?
For example, I was trying to do this: brew install sox
, but it did not work.
Ask coding questions
Is it possible to do command line codes in node js?
For example, I was trying to do this: brew install sox
, but it did not work.
To install sox, go to package.json and add
"sox": "latest",
to the dependencies list.@CBlockSurprise : I have tried that already. I am getting a
spawn sox ENOENT
error from my program, which can be found here. After searching on the internet, I found out that you have to command linebrew install sox
to fix the problem, but that is not working. Thanks for your effort, though!