get nodejs, and use `npm search` to look for something with either `deobfuscate`, `unminify`, or `beautify` in the name, to find utils that can make js files slightly more readable. then `npm install NAME`, then, depending on the package, either `npx NAME`, `npx NAME -h` or `npx NAME --help` to check it's usage. notice the difference between npm and npx: you manage packages with npm, you execute them with npx. and keep in mind that most of the unminifiers were not intended to work on scripts over 30mb in size, so you'll have to experiment.
also, you might wanna use vscodium instead of vscode. less ringing to microsoft.
You must be registered to see the links