Jpaji Rajnish
Jpaji Rajnish

Reputation: 1501

Is it possible to launch a node.js program from outside the console?

Specifically I'd like to launch a node program I've written from an ahk script.

Upvotes: 0

Views: 954

Answers (1)

rollingBalls
rollingBalls

Reputation: 1878

Yes, ahk supports running external executables and capturing their output. See the documentation

So, you use that to run your node command (something like c:\path_to_node\node.exe c:\path_to_script\script.js)

Upvotes: 3

Related Questions