Javascript server side?

后端 未结 4 669

Is it at all possible to use javascript server side and thus not shown in page source for certain core calculations?

I\'m developing a game, and one crucial part of the

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-28 06:15

    You'll want to look at node.js. Node.js allows you to run javascript code on the server and is very easy to get up and running to accept and respond to http requests. You'll probably also want to take a look at expressjs which makes implementing a Node.js server even easier.

提交回复
热议问题