“Cómo ocultar el código JavaScript” Código de respuesta

Cómo ocultar el código JavaScript


https://mefiz.com/  # For Developer
# hide your javascript
# Check this site
https://www.javascriptobfuscator.com/Javascript-Obfuscator.aspx

# Compress the javascript
https://jscompress.com/
Uninterested Unicorn

Ocultar el código JS de la fuente

// To hide your js source code from source panel of dev tools 
//while using create-react-app

//Create a .env file in the root folder
//and write the single line code
//(same folder with package.json)
GENERATE_SOURCEMAP=false
Inquisitive Iguana

Cómo ocultar el código JavaScript del cliente

You cannot hide it at all. It runs on the client and it cannot be compiled to machine code. However, you could minify it - that's basically obfuscating it by shortening variable names, removing whitespace, etc.
don't waste your time 
Divuzki

Respuestas similares a “Cómo ocultar el código JavaScript”

Preguntas similares a “Cómo ocultar el código JavaScript”

Más respuestas relacionadas con “Cómo ocultar el código JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código