[Solved] Is running Javascript on server side protect my javascript source code from being stolen?


yes, you can have a nodejs server that takes an input from a GET or a POST call and returns the result of the computation.
It doesn’t matter really if it’s JavaScript, PHP or whatever other language running on the server. From the client perspective there is no way to actually see the source code running in the server (unless you have a security breach, but that’s another story).

0

solved Is running Javascript on server side protect my javascript source code from being stolen?