Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On the Marionette downloads page, on the 'prerequisites' section, is stated: "Marionette relies on Underscore, Backbone, jQuery, and various other libraries as it's foundation."

Within the list of prerequisites, I see JSON2.js, does anybody know what it is used for and if it's really required for basic usage?

share|improve this question

1 Answer

up vote 4 down vote accepted

JSON support came to browsers rather late. While current browsers all support JSON.stringify and JSON.parse, in old browsers this behaviour had to be shimmed in, and JSON2 was a great library to do so.

You do not need JSON2 unless you intend to support ancient environments that should die a painful death as soon as possible.

share|improve this answer
To subtilize Amadan's answer a bit: this means native JSON support in Internet Explorer 8+, Firefox 3.1+, Safari 4+, Chrome 3+, and Opera 10.5+ – Robbert van den Bogerd Feb 19 at 14:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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