Execute JavaScript from AppleScript

I’m looking for a way to call a terminal command (which executes a JS) from within an Applescript.

Terminal command:

node /Users/macmini_home/node_modules/harmonyHubCLI-master/harmonyHubCLI.js -l 192.168.0.13 -d 'Marantz-AV-Empfänger' -c 'InputBluray'

How can i call this command from within an applescript?

do shell script

of course won’t work here… Thanks!

Solved! Full path to node is needed:

do shell script "/usr/local/bin/node /Users/macmini_home/node_modules/harmonyHubCLI-master/harmonyHubCLI.js ..."