andrea.p
andrea.p

Reputation: 19

Angularjs and Firebase: avoid code stolen?

I am pretty new to javascript and Angular... Firebase + Angular are great toghether. But without a back-end I am really afraid that all my web-app could be easily copied?

Is it correct? If so, there is a guidelines to avoid it?

Thank you

Upvotes: 1

Views: 437

Answers (1)

Noshad Chaudhry
Noshad Chaudhry

Reputation: 97

You can't prevent your html, css, js code from being 'Stolen' all you can do is try to make it hard to do.

Copywriting and Legality The more code you write the easier it will be to prove your the author so if your code is stolen you can sue.

Tips to Make your Code More You Following industry best practices on writing good code will help you keep a consistent style, that in the end kind of proves your the author.

Obfuscation You should obfuscate your code enough to make it difficult enough to copy. Those that will try to deobfuscate your code will likely do it as a hacking exercise. The amount of effort required to hack your code could just be put into creating Apps. As far as how much code is stolen in the real world, I think a lot of people do it just for learning.

This topic has been discussed on this site a lot. See below articles.

How to prevent your JavaScript code from being stolen, copied, and viewed?

Prevent HTML Source Code Stealing

Prevent HTML code from being stolen

Upvotes: 1

Related Questions