如何在共享主机中托管Node.Js应用程序

时间:2014-07-16 09:56:00

标签: node.js web-hosting

如何在共享主机中托管Node.Js应用程序

我想在共享主机中托管node.js应用程序。有没有人有任何参考或文件可供参考?

5 个答案:

答案 0 :(得分:142)

可以在Linux,Apache和PHP(LAMP)的典型共享主机上运行node.js服务器。我已成功安装它,即使使用NPM,Express和Grunt也能正常工作。请按照以下步骤操作:

1)使用以下代码在服务器上创建一个新的PHP文件并运行它:

<?php
//Download and extract the latest node
exec('curl http://nodejs.org/dist/latest/node-v0.10.33-linux-x86.tar.gz | tar xz');
//Rename the folder for simplicity
exec('mv node-v0.10.33-linux-x86 node');

2)以同样的方式安装您的节点应用,例如jt-js-sample,使用npm:

<?php
exec('node/bin/npm install jt-js-sample');

3)从PHP运行节点应用程序:

<?php
//Choose JS file to run
$file = 'node_modules/jt-js-sample/index.js';
//Spawn node server in the background and return its pid
$pid = exec('PORT=49999 node/bin/node ' . $file . ' >/dev/null 2>&1 & echo $!');
//Wait for node to start up
usleep(500000);
//Connect to node server using cURL
$curl = curl_init('http://127.0.0.1:49999/');
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
//Get the full response
$resp = curl_exec($curl);
if($resp === false) {
    //If couldn't connect, try increasing usleep
    echo 'Error: ' . curl_error($curl);
} else {
    //Split response headers and body
    list($head, $body) = explode("\r\n\r\n", $resp, 2);
    $headarr = explode("\n", $head);
    //Print headers
    foreach($headarr as $headval) {
        header($headval);
    }
    //Print body
    echo $body;
}
//Close connection
curl_close($curl);
//Close node server
exec('kill ' . $pid);

瞧!看看demo of a node app on PHP shared hosting

编辑:我开始Node.php project on GitHub

答案 1 :(得分:44)

使用SSH连接并按照instructions to install Node on a shared hosting

进行操作

简而言之,您首先安装NVM,然后使用NVM安装您选择的Node版本。

wget -qO- https://cdn.rawgit.com/creationix/nvm/master/install.sh | bash

重新启动shell(关闭并重新打开会话)。那你

nvm install stable

以安装最新的稳定版本为例。您可以安装任何您选择的版本。检查node --version以查看您当前使用的节点版本,并nvm list查看您已安装的节点版本。

在奖金方面,您可以非常轻松地切换版本(nvm use <version>

如果您有SSH,则不需要PHP或任何棘手的解决方法。

答案 2 :(得分:11)

我使用:

在bluehost.com(共享服务器)上安装了Node.js.
wget <path to download file>
tar -xf <gzip file>
mv <gzip_file_dir> node

这将下载tar文件,解压缩到一个目录,然后将该目录重命名为名称“node”,以便于使用。

然后

./node/bin/npm install jt-js-sample

Returns:
npm WARN engine jt-js-sample@0.2.4: wanted: {"node":"0.10.x"} (current: {"node":"0.12.4","npm":"2.10.1"})
jt-js-sample@0.2.4 node_modules/jt-js-sample
└── express@4.12.4 (merge-descriptors@1.0.0, utils-merge@1.0.0, cookie-signature@1.0.6, methods@1.1.1, cookie@0.1.2, fresh@0.2.4, escape-html@1.0.1, range-parser@1.0.2, finalhandler@0.3.6, content-type@1.0.1, vary@1.0.0, parseurl@1.3.0, serve-static@1.9.3, content-disposition@0.5.0, path-to-regexp@0.1.3, depd@1.0.1, qs@2.4.2, on-finished@2.2.1, debug@2.2.0, etag@1.6.0, proxy-addr@1.0.8, send@0.12.3, type-is@1.6.2, accepts@1.2.7)

我现在可以使用命令:

# ~/node/bin/node -v
v0.12.4

# ~/node/bin/npm -v
2.10.1

出于安全考虑,我已将节点目录重命名为其他目录。

答案 3 :(得分:6)

A2 Hosting允许其共享主机帐户上的node.js。我可以保证我对他们有过积极的体验。

以下是他们的知识库中有关使用Apache / LiteSpeed作为反向代理安装node.js的说明:https://www.a2hosting.com/kb/installable-applications/manual-installations/installing-node-js-on-managed-hosting-accounts。设置配置大约需要30分钟,它可以使用npm,Express,MySQL等。

请参阅a2hosting.com。

答案 4 :(得分:1)

您应该寻找提供此类功能的托管公司,但标准的简单静态+ PHP + MySQL托管不会让您使用node.js.

您需要找到专为node.js设计的托管服务或购买Virtual Private Server并自行安装。