I have a big old config object. Something like:
var object = { item1: 'value1', item2: 1000, item3: ['a', 'b', 'c'], item4: [1, 2, 3], item5: { foo: 'bar' } };
... and so on. I want to rewrite it as valid JSON so it can travel through the intertubes, but I don't want to go through every line in my file manually adding double quotes all over the place. Of course, I don't mind manually wrapping the whole thing in brackets and changing the initial assignment to be the first property, but beyond that I was hoping there's some resource that will do the grunt work.
Anyway, please help me out if know of a TextMate command, regex trick, online converter, friendly robot, or anything else that will make this less tedious.
The JSON.stringify() method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified or optionally including only the specified properties if a replacer array is specified.
JavaScript provides methods: JSON. stringify to convert objects into JSON.
Stringify a JavaScript ObjectUse the JavaScript function JSON. stringify() to convert it into a string. const myJSON = JSON. stringify(obj);
Then type console.log(JSON.stringify(object))
and voila!
{"item1":"value1","item2":1000,"item3":["a","b","c"], "item4":[1,2,3],"item5":{"foo":"bar"}}
For more control over the formatting, I have a free online webpage:
that lets you paste JSON or JS values in one box and see JSON at the bottom, with lots of knobs and sliders to adjust how it looks. For example, the JS value ["foo","bar",{dogs:42,piggies:0,cats:7},{jimmy:[1,2,3,4,5],jammy:3.14159265358979,hot:"pajammy"}]
can be formatted like any of the following (and more):
[ "foo", <- adjustable indentation "bar", {"dogs":42,"piggies":0,"cats":7}, <- small objects on one line! { "jimmy":[1,2,3,4,5], <- small arrays on one line! "jammy":3.142, <- decimal precision! "hot":"pajammy" } ]
[ "foo", "bar", { "cats":7, "dogs":42, "piggies":0 }, <- spaces inside braces! { "hot":"pajammy", <- sort object keys! "jammy":3.14159265358979, "jimmy":[ 1, 2, 3, 4, 5 ] <- spaces after commas! } ]
[ "foo", <- 'short' format puts first value "bar", <- on same line as opening bracket... { "dogs" : 42, "piggies" : 0, "cats" : 7 }, <- ...and close bracket with last value! { "jimmy" : [ 1, 2, 3, 4, 5 ], "jammy" : 3.14159265358979, <- spaces around colons! "hot" : "pajammy" } ] <- align object values!
Why wouldn't you just....
...send the result of JSON.stringify(). You don't need to type in the JSON, you need to generate it at runtime if I am not mistaken, so...
var mything = { .... } ; var jsonRep = JSON.stringify(mything);
See also, Serializing an object to JSON
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With