How do I protect front-end javaScript code from being stolen?
I have an underscore, jQuery, and Backbone application. It is a prototype and doesn't have many users and the back-end code is pretty trivial. Hence any value is in the front end code. How can I protect this code from being stolen/cloned.
Is minifying enough? There are tools such as beautify that can be used to un-minify the code, but is this something that can be used to steal code?
What is best practice to protect front-end JavaScript code?