I have a JavaScript application that I want to share its source with a colleague for the sake of helping/supporting him in his research. Still, I want to make sure that he won't use it for commercial purposes without me being aware of. Some solutions I have already implemented are:
I minify and obfuscate the code to avoid modification of the source code. But the problem is that the minified code is still highly readable! I am using Uglify and Shrinksafe and I think if at the end someone wants to modify the code, they can Beautify.js it and get a pretty readable code.
I take a chunk of the code and put it on my own server and let the main source load that chunk from my server so that I can track. But It is easy to download that chunk from the server and put it in the main.html file so that it won't load from the server anymore. So, this is pretty break-able as well.
Are there any common practice out-there to be used in cases such as mine, in order to avoid stealing and preserve the Intellectual Property of JavaScript code?