You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
7.5 KiB

  1. # JSON 3 #
  2. ![JSON 3 Logo](http://bestiejs.github.io/json3/page/logo.png)
  3. **JSON 3** is a modern JSON implementation compatible with a variety of JavaScript platforms, including Internet Explorer 6, Opera 7, Safari 2, and Netscape 6. The current version is **3.2.6**.
  4. - [Development Version](https://raw.github.com/bestiejs/json3/v3.2.6/lib/json3.js) *(40 KB; uncompressed with comments)*
  5. - [Production Version](https://raw.github.com/bestiejs/json3/v3.2.6/lib/json3.min.js) *(3.3 KB; compressed and `gzip`-ped)*
  6. CDN copies are also available at [cdnjs](http://cdnjs.com/libraries/json3/) & [jsDelivr](http://www.jsdelivr.com/#!json3).
  7. [JSON](http://json.org/) is a language-independent data interchange format based on a loose subset of the JavaScript grammar. Originally popularized by [Douglas Crockford](http://www.crockford.com/), the format was standardized in the [fifth edition](http://es5.github.com/) of the ECMAScript specification. The 5.1 edition, ratified in June 2011, incorporates several modifications to the grammar pertaining to the serialization of dates.
  8. JSON 3 exposes two functions: `stringify()` for [serializing](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/JSON/stringify) a JavaScript value to JSON, and `parse()` for [producing](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/JSON/parse) a JavaScript value from a JSON source string. It is a **drop-in replacement** for [JSON 2](http://json.org/js). The functions behave exactly as described in the ECMAScript spec, **except** for the date serialization discrepancy noted below.
  9. The JSON 3 parser does **not** use `eval` or regular expressions. This provides security and performance benefits in obsolete and mobile environments, where the margin is particularly significant. The complete [benchmark suite](http://jsperf.com/json3) is available on [jsPerf](http://jsperf.com/).
  10. The project is [hosted on GitHub](http://git.io/json3), along with the [unit tests](http://bestiejs.github.io/json3/test/test_browser.html). It is part of the [BestieJS](https://github.com/bestiejs) family, a collection of best-in-class JavaScript libraries that promote cross-platform support, specification precedents, unit testing, and plenty of documentation.
  11. # Changes from JSON 2 #
  12. JSON 3...
  13. * Correctly serializes primitive wrapper objects.
  14. * Throws a `TypeError` when serializing cyclic structures (JSON 2 recurses until the call stack overflows).
  15. * Utilizes **feature tests** to detect broken or incomplete *native* JSON implementations (JSON 2 only checks for the presence of the native functions). The tests are only executed once at runtime, so there is no additional performance cost when parsing or serializing values.
  16. **As of v3.2.3**, JSON 3 is compatible with [Prototype](http://prototypejs.org) 1.6.1 and older.
  17. In contrast to JSON 2, JSON 3 **does not**...
  18. * Add `toJSON()` methods to the `Boolean`, `Number`, and `String` prototypes. These are not part of any standard, and are made redundant by the design of the `stringify()` implementation.
  19. * Add `toJSON()` or `toISOString()` methods to `Date.prototype`. See the note about date serialization below.
  20. ## Date Serialization
  21. **JSON 3 deviates from the specification in one important way**: it does not define `Date#toISOString()` or `Date#toJSON()`. This preserves CommonJS compatibility and avoids polluting native prototypes. Instead, date serialization is performed internally by the `stringify()` implementation: if a date object does not define a custom `toJSON()` method, it is serialized as a [simplified ISO 8601 date-time string](http://es5.github.com/#x15.9.1.15).
  22. **Several native `Date#toJSON()` implementations produce date time strings that do *not* conform to the grammar outlined in the spec**. For instance, all versions of Safari 4, as well as JSON 2, fail to serialize extended years correctly. Furthermore, JSON 2 and older implementations omit the milliseconds from the date-time string (optional in ES 5, but required in 5.1). Finally, in all versions of Safari 4 and 5, serializing an invalid date will produce the string `"Invalid Date"`, rather than `null`. Because these environments exhibit other serialization bugs, however, JSON 3 will override the native `stringify()` implementation.
  23. Portions of the date serialization code are adapted from the [`date-shim`](https://github.com/Yaffle/date-shim) project.
  24. # Usage #
  25. ## Web Browsers
  26. <script src="http://bestiejs.github.io/json3/lib/json3.js"></script>
  27. <script>
  28. JSON.stringify({"Hello": 123});
  29. // => '{"Hello":123}'
  30. JSON.parse("[[1, 2, 3], 1, 2, 3, 4]", function (key, value) {
  31. if (typeof value == "number") {
  32. value = value % 2 ? "Odd" : "Even";
  33. }
  34. return value;
  35. });
  36. // => [["Odd", "Even", "Odd"], "Odd", "Even", "Odd", "Even"]
  37. </script>
  38. ## CommonJS Environments
  39. var JSON3 = require("./path/to/json3");
  40. JSON3.parse("[1, 2, 3]");
  41. // => [1, 2, 3]
  42. ## JavaScript Engines
  43. load("path/to/json3.js");
  44. JSON.stringify({"Hello": 123, "Good-bye": 456}, ["Hello"], "\t");
  45. // => '{\n\t"Hello": 123\n}'
  46. # Compatibility #
  47. JSON 3 has been **tested** with the following web browsers, CommonJS environments, and JavaScript engines.
  48. ## Web Browsers
  49. - Windows [Internet Explorer](http://www.microsoft.com/windows/internet-explorer), version 6.0 and higher
  50. - Mozilla [Firefox](http://www.mozilla.com/firefox), version 1.0 and higher
  51. - Apple [Safari](http://www.apple.com/safari), version 2.0 and higher
  52. - [Opera](http://www.opera.com) 7.02 and higher
  53. - [Mozilla](http://sillydog.org/narchive/gecko.php) 1.0, [Netscape](http://sillydog.org/narchive/) 6.2.3, and [SeaMonkey](http://www.seamonkey-project.org/) 1.0 and higher
  54. ## CommonJS Environments
  55. - [Node](http://nodejs.org/) 0.2.6 and higher
  56. - [RingoJS](http://ringojs.org/) 0.4 and higher
  57. - [Narwhal](http://narwhaljs.org/) 0.3.2 and higher
  58. ## JavaScript Engines
  59. - Mozilla [Rhino](http://www.mozilla.org/rhino) 1.5R5 and higher
  60. - WebKit [JSC](https://trac.webkit.org/wiki/JSC)
  61. - Google [V8](http://code.google.com/p/v8)
  62. ## Known Incompatibilities
  63. * Attempting to serialize the `arguments` object may produce inconsistent results across environments due to specification version differences. As a workaround, please convert the `arguments` object to an array first: `JSON.stringify([].slice.call(arguments, 0))`.
  64. ## Required Native Methods
  65. JSON 3 assumes that the following methods exist and function as described in the ECMAScript specification:
  66. - The `Number`, `String`, `Array`, `Object`, `Date`, `SyntaxError`, and `TypeError` constructors.
  67. - `String.fromCharCode`
  68. - `Object#toString`
  69. - `Function#call`
  70. - `Math.floor`
  71. - `Number#toString`
  72. - `Date#valueOf`
  73. - `String.prototype`: `indexOf`, `charCodeAt`, `charAt`, `slice`.
  74. - `Array.prototype`: `push`, `pop`, `join`.
  75. # Contribute #
  76. Check out a working copy of the JSON 3 source code with [Git](http://git-scm.com/):
  77. $ git clone git://github.com/bestiejs/json3.git
  78. $ cd json3
  79. $ git submodule update --init
  80. If you'd like to contribute a feature or bug fix, you can [fork](http://help.github.com/fork-a-repo/) JSON 3, commit your changes, and [send a pull request](http://help.github.com/send-pull-requests/). Please make sure to update the unit tests in the `test` directory as well.
  81. Alternatively, you can use the [GitHub issue tracker](https://github.com/bestiejs/json3/issues) to submit bug reports, feature requests, and questions, or send tweets to [@kitcambridge](http://twitter.com/kitcambridge).
  82. JSON 3 is released under the [MIT License](http://kit.mit-license.org/).