我知道有Node.js和Rhino,以及运行服务器端JS的其他平台。虽然,我们只能负担共享服务器,因为VPS要贵得多,normally shared servers do not provide这样的工具。我们需要运行一些cron作业,默认情况下由服务器运行,我们的核心功能是纯JS而不与浏览器/客户端交互。
是否有一种运行服务器端JS的简单方法,而无需安装服务器端特定的SW?
答案 0 :(得分:2)
1)转到Node.js download page并获取Linux Binaries(.tar.gz)的链接(右键单击>复制链接地址)。
2)然后(thanks to user niutech)创建以下php文件,即 install_node.php
<?php
//Download and extract the latest node
exec('curl http://the_URL_you_copied | tar xz');
//Rename the folder for simplicity, adapt accordingly
exec('mv node-v#bla_bla-linux node');
?>
3)从unix终端运行php文件
$php -q install_node.php
4)然后,您可以在./node/bin/node
上运行节点可执行文件