I am looking for a code beautifier that supports javascript and works on both windows and linux and can be used in batch scripts. Any recommendations?
|
First, pick your favorite Javascript based Pretty Print/Beautifier. I prefer the one at http://jsbeautifier.org/, because it's what I found first. Second, download and install The Mozilla group's Java based Javascript engine, Rhino. "Install" is a little bit misleading; Download the zip file, extract everything, place js.jar in your Java classpath (or Library/Java/Extensions on OS X). You can then run scripts with an invocation similar to this
Use the Pretty Print/Beautifier from step 1 to write a small shell script that will read in your javascript file and run it through the Pretty Print/Beautifier from step one. For example
Rhino gives javascript a few extra useful functions that don't necesarily make sense in a browser context, but do in a console context. The function print does what you'd expect, and prints out a string. The function readFile accepts a file path string as an argument and returns the contents of that file. You'd invoke the above something like
You can mix and match Java and Javascript in your Rhino run scripts, so if you know a little Java it shouldn't be too hard to get this running with text-streams as well. |
|||||||||||||
|
|
My Pretty Diff tool is written entirely in JavaScript so it works equally well on all operating systems. It supports beautification and minification of JavaScript, CSS, any markup language that uses XML style delimiters, including HTML. |
||||
|
|
So far I have found a couple of online ones: Still looking for something I can ran from the command line. |
|||
|
|
Adding to Answer of @Alan Storm the command line beautifier based on http://jsbeautifier.org/ has gotten a bit easier to use, because it is now (alternatively) based on the V8 javascript engine (c++ code) instead of rhino (java-based JS engine, packaged as "js.jar") How to use: download jsbeautifier.org zip file from http://github.com/einars/js-beautify/zipball/master (this is a download URL linked to a zip file such as http://download.github.com/einars-js-beautify-10384df.zip) old (still works)
new (alternative) install/compile v8 lib FROM svn, see v8/README.txt in above-mentioned zip file
-has slightly different command line options than the rhino version, -and works great in Eclipse when configured as an "External Tool" |
|||||
|
|
Usually I only have to do code compression with Javascript, in which case Yahoo! puts out an excellent utility which reduces javascript code to the absolute minimum (renaming variables, removing whitespace, etc) to make it better for production server efficiency. YUI Compressor For code beautification, Aptana puts out an IDE (and an Eclipse plugin, I believe) for JavaScript development that should be able to do code formatting. I don't think it can do batch scripts however. I think Eclipse can do batch processing though, so you may want to look into how the Eclipse plugin could be integrated with Eclipse for code beautification. |
|||
|
|
|
This is a very useful website to beautify/indent your js files. i often use it. Check this: http://jsbeautifier.org/ |
|||
|
|
|
I use this one (http://jsbeautifier.atomproject.net/) beautifier. Its online and free. |
|||
|
|
|
I'm not able to add a comment to the accepted answer so that's why you see a post that should have not existed in the first place. Basically I also needed a javascript beautifier in a java code and to my surprise none is available as far as I could find. So I coded one myself entirely based on the accepted answer. The code is located at https://github.com/belgampaul/JsBeautifier I used rhino and beautifier.js USAGE from console: java -jar jsbeautifier.jar script indentation example: java -jar jsbeautifier.jar "function ff() {return;}" 2 USAGE from java code: public static String jsBeautify(String jsCode, int indentSize) You are welcome to extend the code. In my case I only needed the indentation so I could check the generated javascript while developing. In the hope it'll save you some time in your project. |
|||
|
|
|
Depending upon how well you script sometimes its a good idea to inspect your code before you compact it. I suggest JSLint, personally. Browsers are made to eat such crap, frequently I find myself working C# and forgetting some minor JavaScript items. For instance, I never tended to use ===/!== when comparing variables against null, true, false, 0, or "", but apparently its a best practice over ==/!= since it doesn't employ typecasting. A VisualStudio 2008 JSLint plugin' would rule the house. |
|||||||||
|
|
The problem with allot of beautifiers is the choice of output and filtering and the sever lack of serious command line beautifiers. I've recently begun modifying YUI compressor to beautify code. If you want to make your own beautifier I have to highly recommend this approach. YUI is open source and comes with an ant build file making it very easy to alter and compile. |
|||
|
|
|
Here's a javascript beautifier written in .NET supporting command-line as well as interactive mode: http://www.rahulsingla.com/blog/2010/12/jsbeautifier-net-javascript-beautifier-in-net There's no external dependency except .Net 2.0. |
|||
|
|
|
I've written an article explaining how to build a command-line JavaScript beautifier implemented in JavaScript in under 5 minutes. YMMV.
|
||||
|
|
|
If you're using nodejs then try uglify-js On Ubuntu 12.04, assuming you already have nodejs installed, you can install uglify with:
And then get the options:
So if I have a source file
I can beautify it like so:
You can find out more about unexpand here so after all this I wind up with a file that looks like so:
|
|||
|
|
|
This is a free stand-alone beautifier (and much more): |
|||
|
|
protected by balexandre Jun 11 '12 at 19:57
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
