I have found plenty of questions/aswers about using node.js to build a server and how the javascript (server side) code won't be accessible to people accessing the server via a browser as it is not client side javascript.
If I want to use that server on an iOS or Android device (actually running the server on the device), am I wrong to assume that the server side javascript will now be available to anyone using that device? I don't believe that node.js compiles or otherwise hides the server side javascript.
If what I fear above is true, is there any way keep prying eyes away from the server side javascript on these devices?
Thanks very much for your help.
Dana