JSON 3

Benchmark created by Kit Cambridge on


Preparation HTML

<!-- JSON 3 v3.2.2 -->
<script>
  // Disable the native JSON implementation.
  this.JSON = null;
</script>
<script src="http://bestiejs.github.com/json3/lib/json3.min.js"></script>
<!-- JSON 2 -->
<script>
  // Set up JSON 2.
  this.JSON3 = this.JSON;
  this.JSON = null;
</script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"></script>
<script>
  this.JSON2 = this.JSON;
  this.JSON = null;
</script>
<!-- `json-parse-state` (Crockford's state machine parser) -->
<script src="http://rawgithub.com/douglascrockford/JSON-js/master/json_parse_state.js"></script>
<script>
  // `json-parse` is exposed via the `json_parse` function as well.
  this.json_parse_state = this.json_parse;
</script>
<!-- `json-parse` (Crockford's recursive descent parser) -->
<script src="http://rawgithub.com/douglascrockford/JSON-js/master/json_parse.js"></script>
<!-- Mike Samuel's `json-sans-eval` -->
<script src="http://json-sans-eval.googlecode.com/svn/trunk/src/json_sans_eval.js"></script>
<!-- Asen Bozhilov's `evalJSON` -->
<script src="http://rawgithub.com/abozhilov/json/master/src/json.js"></script>

Setup

var value = '{"kitcambridge":"Kit","contributors":{"jdalton":"John-David","mathias":"Mathias"},"list":[1,2,3],"number":5,"date":"2012-04-25T14:08:36.879Z","boolean":true,"nil":null}';

Test runner

Ready to run.

Testing in
TestOps/sec
JSON 3: parse
JSON3.parse(value);
ready
JSON 2: parse
JSON2.parse(value);
ready
json-parse-state
json_parse_state(value);
ready
json-parse
json_parse(value);
ready
json-sans-eval
jsonParse(value);
ready
evalJSON
evalJSON(value);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.