Javascript server side?

后端 未结 4 670

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:36

    I would also recommend you to check out NowJS (http://nowjs.com/) which will allow you to easily call server functions from client (without exposing their source code).

    now.calculateGameScore(function(data){ ... });

提交回复
热议问题