up vote 43 down vote favorite
11
share [g+] share [fb]

I need Notepad++ to take a json string from this

{"menu": {"id": "file","value": "File","popup": {"menuitem": [{"value": "New", "onclick": "CreateNewDoc()"},{"value": "Open", "onclick": "OpenDoc()"},{"value": "Close", "onclick": "CloseDoc()"}]}}}

to this...

{"menu": {
  "id": "file",
  "value": "File",
  "popup": {
    "menuitem": [
      {"value": "New", "onclick": "CreateNewDoc()"},
      {"value": "Open", "onclick": "OpenDoc()"},
      {"value": "Close", "onclick": "CloseDoc()"}
    ]
  }
}}

I looked around at all the TextFX options but couldn't find anything that worked.

link|improve this question

1  
Not that I know of, unfortunately. :-( – KyleFarris Oct 13 '09 at 14:51
feedback

14 Answers

up vote 50 down vote accepted

JSMin's JSformat option turned the JSON into this in Notepad++ 5.8.7:

{
"menu" : {
    "id" : "file",
    "value" : "File",
    "popup" : {
        "menuitem" : [{
                "value" : "New",
                "onclick" : "CreateNewDoc()"
            }, {
                "value" : "Open",
                "onclick" : "OpenDoc()"
            }, {
                "value" : "Close",
                "onclick" : "CloseDoc()"
            }
        ]
    }
}
link|improve this answer
That was exactly what I needed. Thanks! – Nathan Totten Feb 23 '11 at 21:01
Doesn't work now with Notepad++ v5.9 :( – bits Jun 28 '11 at 1:15
Oh never mind. It works beautiful. I was trying it on a readonly file. – bits Jun 28 '11 at 1:31
great plugin!!! – user253202 Aug 5 '11 at 8:57
feedback

Universal Indent GUI plugin for Notepad++ will turn your sample into:

{
    "menu" : {
        "id" : "file", "value" : "File", "popup" : {
            "menuitem" : [ {
                "value" : "New", "onclick" : "CreateNewDoc()";
            }
            , {
                "value" : "Open", "onclick" : "OpenDoc()";
            }
            , {
                "value" : "Close", "onclick" : "CloseDoc()";
            }
            ];
        }
    }
}
link|improve this answer
You rock! Thanks – Donny V. Nov 20 '09 at 18:29
unfortunately, this does not work with the newest Unicode version of Notepad++ 5.5 – Anthony Shaw Dec 18 '09 at 16:07
2  
Use the new Plugin Manager to download the version you need. – Donny V. Mar 1 '10 at 23:00
Just tried to install this plugin using Plugin Manager and it failed. – Bob Oct 24 '10 at 21:00
2  
I think it doesn't work on 64bit systems. I switched to the JSMin plugin. See Dan H.'s answer. – Donny V. Mar 8 '11 at 14:00
feedback

I personally use JSON Viewer since the Notepad++ plugin doesn't work any more.

link|improve this answer
feedback

It's not an NPP solution, but in a pinch, you can use this online JSON Formatter and then just paste the formatted text into NPP and then select Javascript as the language.

link|improve this answer
This is a nice answer, but I humbly submit that selecting Python as the language is even better. – Brent.Longborough Dec 20 '10 at 17:20
feedback

JSMinNpp plugin will do this job. https://sourceforge.net/projects/jsminnpp/

link|improve this answer
feedback

It worked for me in the latest edition to Notepad using the UniversalIndentGui.

What I did was under the plugin setting choose Enable Text Auto Update, a window popped up and I selected javascript.

link|improve this answer
nice. thanks for the tip. – neesh Sep 3 '10 at 15:22
feedback

Your best bet is to use one of the latest versions of Eclipse (I am using Eclipse Galileo J2EE and Eclipse Ganymede J2EE). Create a JavaScript file, then create a variable: var jsonObject = {"menu": {"id": "file","value": "File","popup": {"menuitem": [{"value": "New", "onclick": "CreateNewDoc()"},{"value": "Open", "onclick": "OpenDoc()"},{"value": "Close", "onclick": "CloseDoc()"}]}}};

Lastly, hit CTRL+SHIFT+F and voila! You have a nicely indented JSON Object. I, too, am looking for a Notepad++ JSON formatter, and I very well may be forced to develop an Npp plugin some short time in the future.

link|improve this answer
feedback

You can use http://www.jsonlint.com/

link|improve this answer
feedback

No, not at this time.

:)

link|improve this answer
feedback

I usually copy&paste code to Eclipse and there press CTRL+SHIFT+F (format code). But I did not try it yet on JSON.

link|improve this answer
1  
Just tried in Eclipse, don't work for JSON. – Trick Oct 20 '09 at 16:04
feedback

I know you asked about NotePad++ but TextMate for OS X can do it via the JSON bundle, its called the "Reformat Document" command.

link|improve this answer
feedback

A JSON pretty printer in javascript

link|improve this answer
It seems to give up at the end, forgetting to indent the rest of the braces. – Dan Atkinson Mar 1 '10 at 11:12
feedback

The following Notepad++ plugin worked for me as suggested by "SUN" https://sourceforge.net/projects/jsminnpp/

link|improve this answer
feedback

Notepad 5.8.7 and jsmin 1.7.0.0 works wonderful here.

Be careful though, found out jsmin eats the comments the hard way (should have read first).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.