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?
|
3
|
|
|
|
|
|
First, pick your favorite Javascript based Pretty Print/Beautifier. I prefer the one at http://elfz.laacz.lv/beautify/, 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. |
||
|
|
|
|
This is a free stand-alone beautifier (and much more): |
||
|
|
|
|
So far I have found a couple of online ones: Still looking for something I can ran from the command line. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
