11

I am able to Un minify CSS using Visual studio shortcut (Ctrl + K + D). Same trick not working for JS files.

How can I un minify JS using Visual Studio like (Ctrl + K + D) short cut. I know there are lot of tools on web but i am searching for Visual Studio.

asked Jul 25, 2014 at 15:32
0

2 Answers 2

8

Tool to Unminify / Decompress JavaScript

You cannot truly unminify javascript, as minified javascript replaces variable names with letters, as well as removing code comments - these cannot be "undone" as the original information no longer exists.

It appears that you can at least recreate appropriate spacing, but "real" minified javascript cannot be undone.

answered Jul 25, 2014 at 16:16
0
3

You can use Prettier https://prettier.io/docs/en/install.html, to get the script slightly human readable.

If you are having problem with vs code you can add this in your settings.json

"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },

It works for me for mega file...

answered Jul 29, 2021 at 19:46

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.