I have a question about HTML, CSS, JavaScript source encryption.

Asked 2 years ago, Updated 2 years ago, 108 views

In the case of Naver Web document, if you click View Source in Chrome, you can see the source layer as follows. Of course, I don't know the whole context, but I was able to see how it was organized roughly. In the case of Google, the source itself looked difficult so that it could not be visually recognized at all.

I vaguely remember hearing that there was a cryptographic library like how Google applied it, but I don't remember the name, so I post it. I'd appreciate it if you let me know if anyone knows.

html5 css javascript encryption

2022-09-22 19:56

1 Answers

You can think of it as mini, uglify.

Minify is to remove unnecessary comments or spaces, and obfuscates the uglify variable or function name to make the code unrecognize the code. But it seems that the uglify process also goes through a minify.

Most of them are done using the front-end build tool.

There are also many site available online.


2022-09-22 19:56

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.