Run server-side js from php through exec()

12,489

I found a way to make it work! I just wrote the full directory where node.js is installed in the exec() call. Simple as that:

<?php exec('/home/bin/node myscript.js >/dev/null/ 2>&1 &'); ?>
Share:
12,489
cawecoy
Author by

cawecoy

Updated on June 04, 2022

Comments

  • cawecoy
    cawecoy almost 2 years

    I have a site running on Apache/PHP, and as a matter of performance, I wrote a javascript to do a specific task.

    I have installed node.js on server, in order to run this javascript. When I call the script from the command line, it works fine. See the command below:

    > node myscript.js
    

    But I need it to run from a php page, and I am trying to do this by calling the exec() PHP function, like this:

    <?php exec('node myscript.js >/dev/null/ 2>&1 &'); ?>
    

    ...but it's not working.

    Am I doing something wrong? Is there another way to do what I want?