I'm trying to use a JSON parser which will detect and save duplicate keys. I'm using JSON.parse() in node.js with a reviver, which I am hoping will tell me when I'm getting a duplicate key. However it doesn't. Is there another way? Is there a better JSON parser which handles duplicate keys in a reviver or other argument?
"use strict";
try {
var content = '{"value": "a", "value": "b", "value": "c" }';
console.log(content);
var parsed = JSON.parse(content, function(k, v) {
console.log(k+"="+JSON.stringify(v));
return v;
});
} catch (e) {
console.log(e);
}
Output is:
{"value": "a", "value": "b", "value": "c" }
value="c"
={"value":"c"}
JSON.parse()
parses the string the same way whether or not you provide a reviver function (in other words, it does not switch to a "streaming parser" when areviver
is passed in). Providing areviver
function is just a convenience so as not to have to write the necessary loops yourself.There are some streaming JSON parsers on npm, for example: clarinet, JSONStream, and oboe. Here's a little test for those 3: