Protect js code from being stolen
- by Kaidul Islam Sazal
I have developed an web app with jquery,html-css markup which would be an premium web app. So I have to ensure the security of the code from being stolen.But as all these are client side,so there is no 100% secure way to protect them.But I want to make them harder to steal.For this I did :
I have disabled the right click button of mouse
I have minified and obfuscated the code.
I have used js code to add external js file and obfuscated the code so that none can understand the name of the external js file
I have created a index.html file in the js folder so that none can get access the js folder
Do you think all these are enough to make stealing harder? Or any suggestion/advice for me?