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
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){ ... });