Is using an obfuscator enough to secure my JavaScript code?

后端 未结 9 2229
无人共我
无人共我 2020-12-13 01:04

I\'m working on building a development tool that is written in JavaScript.

This will not be an open source project and will be sold (hopefully) as a commercial produ

9条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-13 02:06

    I deeply disagree with most answers above.

    It's true that every software can be stolen despite of obfuscation but, at least, it makes harder to extract and reuse individual parts of the software and that is the point.

    Maybe it's cheaper and less risky to use an obfuscation than leaving the code open and fighting at court after somebody stole the best parts of our software and made dangerous concurrency.

    Unobfuscated code whispers:

    • Come on, analyze me, reuse me. Maybe you could make a better software using me.

    Obfuscated code says:

    • Go away dude. It's cheaper to use your own ideas than trying to crack me.

提交回复
热议问题