How to host a code and just put embedd without anyone seeing my code in that website? The easiest and maybe no need to create ac | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How to host a code and just put embedd without anyone seeing my code in that website? The easiest and maybe no need to create ac

16th Apr 2021, 11:56 AM
Hello
Hello - avatar
2 Answers
+ 2
Since html, css and JavaScript are actually interpreted in the browser, there’s no way to hide it. If there are things to hide, you need to do server side programming. That’s how forms are processed. Most html is actually generated server side before it’s sent to the browser.
16th Apr 2021, 12:40 PM
Jerry Hobby
Jerry Hobby - avatar
+ 1
Twin Chick 🐣🐣🐣🐤🐤🐤🐥🐥🐥 There's no way to hide code that needs to be understood and run by the client (browser) as Jerry Hobby said. The best way to protect sensitive data is to handle it server-side. If you're worried about people copying your JavaScript code for whatever reason, you could consider obfuscating your code. This means that your JavaScript code becomes harder to read. You can do this using a bundler (build-tool) like Webpack. For a small project, you could even use an online service to obfuscate. It's better than not obfuscating client-side code at all but it's not the same as handling things server-side. Be aware that there can be some performance costs of obfuscating.
16th Apr 2021, 1:20 PM
CamelBeatsSnake
CamelBeatsSnake - avatar