Parse / Angular web application - how to protect the source

I am developing a web application using Parse.com and AngularJS, i.e. in a two-tier architecture.

My question is: how do I protect the source? Couldn't anyone copy my static files completely and clone the site?

Thanks guys,

0
source share
1 answer

This is basically what you have to deal with when using javascript on the client side. Of course, you can use the obfuscating minifier for your final download file to try and redo it a little harder, but still don't get around the fact that you have an open source working file.

+1

Source: https://habr.com/ru/post/1544968/


All Articles