English 中文(简体)
我如何在 cpanel 中安装一个 nodejs 应用程序, 但在我的 cpanel 软件部件中没有设置 nodejs
原标题:how do i install a nodejs app in cpanel but there is no setup nodejs in my cpanel software part
  • 时间:2024-02-10 06:30:02
  •  标签:
  • node.js

i want install a node.js app in cpanel and i have searched in google and all articles say that there is a setup node.js option in software part but there is no Setup nod.js option in my cpanel software part ,
and when i send a ticket to host support they reply that node.js is installed by default now i want to know how can i install a node.js app without setup node.js option .

var http = require( http );

http.createServer(function (req, res) {
  res.writeHead(200, { Content-Type :  text/plain });
  res.end( Hello World! );
}).listen(8080);
问题回答

拜托你是怎么解决的?





相关问题
How to make Sequelize use singular table names

I have an model called User but Sequelize looks for the table USERS whenever I am trying to save in the DB. Does anyone know how to set Sequelize to use singular table names? Thanks.

What is Node.js? [closed]

I don t fully get what Node.js is all about. Maybe it s because I am mainly a web based business application developer. What is it and what is the use of it? My understanding so far is that: The ...

Clientside going serverside with node.js

I`ve been looking for a serverside language for some time, and python got my attention somewhat. But as I already know and love javascript, I now want learn to code on the server with js and node.js. ...

Can I use jQuery with Node.js?

Is it possible to use jQuery selectors/DOM manipulation on the server-side using Node.js?

How do I escape a string for a shell command in node?

In nodejs, the only way to execute external commands is via sys.exec(cmd). I d like to call an external command and give it data via stdin. In nodejs there does yet not appear to be a way to open a ...

热门标签