-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
226 lines (213 loc) · 11.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSONauts unite!</title>
<meta name="description" content="The ultimate reference for JSON tooling and specs"/>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Jura" />
<link rel="stylesheet" media="screen" href="style.css" />
<link rel="stylesheet" media="print" href="print.css" />
</head>
<body>
<img id="json-logo" src="json.gif" alt="JSON logo" />
<div id="menu">
<span><a href="">Home</a></span>
<span><a href="#front-end">Front-end</a></span>
<span><a href="#back-end">Back-end and APIs</a></span>
<span><a href="#hypermedia">Hypermedia</a></span>
<span><a href="#transformation">Transformation</a></span>
<span><a href="#query">Query</a></span>
<span><a href="#schema-validator">Schema and validation</a></span>
<span><a href="#talks-tutorials">Talks and tutorials</a></span>
</div>
<h1>JSONauts</h1>
<p>The ultimate reference for JSON tooling and specs.</p>
<div class="intro">
<p>As a JSONaut<sup><a href="#jsonaut-def">1</a></sup> you <a href="http://webofdata.wordpress.com/2012/03/24/why-i-luv-json/" title="Why I luv JSON … « Web of Data">luv JSON</a> no matter if used in the front-end, in the back-end or in APIs.</p>
</div>
<h2 id="kick-start">Basics</h2>
<p>If you're not familiar with JSON of course you want to check out <a href="http://json.org/" title="JSON">json.org</a> first. Then, go and have a look at the <a href="http://tools.ietf.org/html/rfc4627" title="RFC 4627 - The application/json Media Type for JavaScript Object Notation (JSON)">RFC4627</a> where the <code>application/json</code> media type is defined.
</p>
<h2 id="front-end">Front-end</h2>
<ul>
<li>
<a href="http://documentcloud.github.com/backbone/" title="Backbone.js">Backbone.js</a>:
<a href="http://documentcloud.github.com/backbone/#Model-toJSON" title="Backbone.js">model.toJSON()</a>,
<a href="http://documentcloud.github.com/backbone/#Collection-toJSON" title="Backbone.js">collection.toJSON()</a>,
see also stackoverflow:
[<a href="http://stackoverflow.com/questions/5629972/integrating-json-feed-with-backbone-js" title="javascript - Integrating JSON feed with Backbone JS - Stack Overflow">1</a>],
[<a href="http://stackoverflow.com/questions/6906434/accept-json-from-backbone-js-sync-in-php" title="javascript - Accept JSON from backbone.js Sync in PHP - Stack Overflow">2</a>],
[<a href="http://stackoverflow.com/questions/7266038/backbone-collection-fetching-with-json" title="backbone.js - backbone collection fetching with json - Stack Overflow">3</a>]
</li>
<li>
<a href="http://dojotoolkit.org/" title="Unbeatable JavaScript Tools - The Dojo Toolkit">Dojo</a>:
<a href="http://dojotoolkit.org/reference-guide/dojo/json.html" title="dojo/json — The Dojo Toolkit - Reference Guide">dojo/json</a>
</li>
<li><a href="http://jquery.com/" title="jQuery: The Write Less, Do More, JavaScript Library">jQuery</a>:
<a href="http://api.jquery.com/jQuery.getJSON/" title="jQuery.getJSON() – jQuery API">getJSON()</a>,
<a href="http://api.jquery.com/jQuery.parseJSON/" title="jQuery.parseJSON – jQuery API">parseJSON()</a>
</li>
<li>
<a href="http://brian.io/lawnchair/" title="Lawnchair: Simple JSON Storage">lawnchair</a> - simple JSON storage
</li>
</ul>
<h2 id="back-end">Back-end and APIs</h2>
<ul>
<li>
There are over 2400 APIs listed on <a href="http://www.programmableweb.com/apis/directory/1?format=JSON" title="API Directory - ProgrammableWeb">ProgrammableWeb.com</a> that use JSON.
</li>
<li>
<a href="http://couchdb.apache.org/" title="Apache CouchDB: The Apache CouchDB Project">CouchDB</a>:
<a href="http://wiki.apache.org/couchdb/HTTP_Document_API" title="HTTP_Document_API - Couchdb Wiki">HTTP Document API</a>
</li>
<li>
<a href="http://www.elasticsearch.org/" title="elasticsearch - - Open Source, Distributed, RESTful, Search Engine">elasticsearch</a>:
<a href="http://www.elasticsearch.org/guide/reference/api/index_.html" title="elasticsearch - guide - Index API">Index API</a>
</li>
<li>
<a href="http://www.mongodb.org/" title="MongoDB">MongoDB</a>:
<a href="http://www.mongodb.org/display/DOCS/Overview+-+Writing+Drivers+and+Tools" title="Overview - Writing Drivers and Tools - MongoDB">Writing Drivers and Tools</a>
</li>
<li>
<a href="http://nodejs.org/" title="node.js">Node.js</a>:
<a href="https://github.com/joyent/node/wiki/modules#wiki-parsers-json">Parsers</a>,
npm package <a href="http://toolbox.no.de/packages/ajax" title="The Node Toolbox - ajax">ajax</a>
</li>
<li>
<a href="http://www.postgresql.org/" title="PostgreSQL: The world's most advanced open source database">PostgreSQL</a>: <a href="http://www.postgresql.org/about/news/1395/" title="PostgreSQL: PostgreSQL 9.2 Beta 1 Available for Testing">v9.2 announcement</a>,
PostgreSQL as JSON Document Store <a href="https://gist.github.com/2715918"> gist</a>
</li>
</ul>
<h2 id="hypermedia">Hypermedia</h2>
<ul>
<li>
<a href="http://www.amundsen.com/media-types/collection/" title="Collection+JSON - Hypermedia Type: Media Types">Collection+JSON - Hypermedia Type</a>
</li>
<li>
<a href="http://stateless.co/hal_specification.html" title="The Hypertext Application Language">HAL - Hypertext Application Language</a>
</li>
<li>
<a href="http://www.odata.org/documentation/json-format" title="OData Protocol JSON Format">OData: JavaScript Object Notation (JSON) Format</a>
</li>
<li>
<a href="http://the-object.net/" title="The Object Network">The Object Network: Linking up our APIs</a>
</li>
<li>
<a href="http://tools.ietf.org/html/draft-pbryan-http-json-resource" title="A Convention for HTTP Access to JSON-Based Resources">A Convention for HTTP Access to JSON-Based Resources</a>
</li>
<li>
<a href="http://json-ld.org/" title="JSON-LD - JSON for Linking Data">JSON for Linking Data</a>
</li>
<li>
<a href="http://tools.ietf.org/html/draft-pbryan-zyp-json-ref" title="JSON Reference">JSON Reference</a>
</li>
<li>
<a href="http://tools.ietf.org/html/draft-pbryan-zyp-json-pointer" title="JSON Pointer">JSON Pointer</a>
</li>
<li>
<a href="http://tools.ietf.org/html/draft-nottingham-json-home" title="Home Documents for HTTP APIs">Home Documents for HTTP APIs</a>
</li>
</ul>
<h2 id="transformation">Transformation</h2>
<ul>
<li>
<a href="http://www.jsonml.org/" title="JsonML (JSON Markup Language)">JSON Markup Language (JsonML)</a>
</li>
<li>
<a href="http://developer.yahoo.com/yql/guide/json_to_json.html" title="JSON-to-JSON Transformation - YDN">JSON-to-JSON Transformation</a>
</li>
<li>
<a href="http://goessner.net/articles/jsont/" title="JsonT - Transforming Json">JsonT - Transforming Json</a>
</li>
<li>
<a href="http://www.json2html.com/" title="JSON2HTML | Transform JSON to HTML">json2html</a> - Transform JSON to HTML
</li>
<li>
<a href="http://code.google.com/p/json-template/" title="json-template - Minimal but powerful templating language implemented in multiple languages">json-template</a> - minimal but powerful templating language implemented in multiple languages
</li>
<li>
<a href="https://github.com/mhausenblas/tride">Tride</a> - turning tabular data into entities (CSV to JSON)
</li>
<li>
<a href="http://www.bramstein.com/projects/xsltjson/" title="XSLTJSON: Transforming XML to JSON using XSLT - bramstein.com">XSLTJSON</a>: transforming XML to JSON using XSLT
</li>
<li>
<a href="http://jsontoxml.codebeautify.org/" title="Convert JSON to XML">Xml to JSON</a>: Converting XML to JSON
</li>
</ul>
<h2 id="query">Query</h2>
<ul>
<li>
<a href="http://jsonselect.org" title="JSONSelect">JSONSelect</a>
</li>
<li>
<a href="http://danski.github.com/spahql/" title="SpahQL: Query, manipulate and manage JSON data effortlessly.">SpahQL</a>: query, manipulate and manage JSON data effortlessly.
</li>
<li>
<a href="http://code.google.com/p/jaql/" title="jaql - Query Language for JavaScript(r) Object Notation (JSON) - Google Project Hosting">jaql</a> - Query Language for JSON
</li>
<li>
<a href="http://jsoniq.org/" title="JSONiq: A Query Language for JSON and XML">JSONiq</a> - XQuery for JSON, JSON for XQuery
</li>
<li>
<a href="http://goessner.net/articles/JsonPath/" title="JSONPath - XPath for JSON">JSONPath</a> - XPath for JSON
</li>
<li>
<a href="http://jsonpath.curiousconcept.com/" title="JSONPath Expression Tester">JSONPath Expression Tester</a>
</li>
<li>
<a href="http://adriank.github.io/ObjectPath" title="ObjectPath - The agile query language for JSON">ObjectPath - The agile query language for JSON</a>
</li>
</ul>
<h2 id="schema-validator">Schema and validation</h2>
<ul>
<li>
<a href="http://json-schema.org/" title="JSON Schema">JSON Schema</a>
</li>
<li>
<a href="http://davidwalsh.name/json-validation" title="JSON Validation with JSON Schema">JSON Validation with JSON Schema</a>
</li>
<li>
<a href="http://jsonlint.com/" title="JSONLint - The JSON Validator.">JSONLint</a>
</li>
<li>
<a href="http://code.google.com/p/jsonvalidator/" title="jsonvalidator">jsonvalidator</a>
</li>
<li>
<a href="http://braincast.nl/samples/jsoneditor/" title="JSON Editor">JSON Editor</a>
</li>
<li>
<a href="http://jsoneditor.net/" title="JSON Editor by katamari">JSON Editor</a>
</li>
<li>
<a href="http://www.jsoneditoronline.org/" title="JSON Editor Online - Edit and format JSON data online">JSON Editor Online</a>
</li>
<li>
<a href="http://jsoneditor.appspot.com/" title="Web application powered by LINB framework">JSON Editor</a>
</li>
<li>
<a href="http://jsonviewer.codebeautify.org/" title="Json Viewer and Editor with Image View functionality">JSON Viewer/Editor</a>:With image view functionality
</li>
</ul>
<h2 id="talks-tutorials">Talks and tutorials</h2>
<ul>
<li>
Doug Crockford: <a href="http://www.youtube.com/watch?v=kc8BAR7SHJI" title="Discovering JavaScript Object Notation with Douglas Crockford - YouTube">Discovering JavaScript Object Notation</a> (video)
</li>
<li>
Doug Crockford: <a href="http://www.youtube.com/watch?v=-C-JoyNuQJs" title="Douglas Crockford: The JSON Saga - YouTube">The JSON Saga</a> (video)
</li>
<li>
Drew Wilson: <a href="http://code.drewwilson.com/entry/an-introduction-to-json" title="Code | Drew Wilson.com">An Introduction to JSON</a> (video + material)
</li>
<li>
Steve Klabnik: <a href="http://steveklabnik.github.com/hypermedia-presentation/" title="Designing Hypermedia APIs">Designing Hypermedia APIs</a> (slides)
</li>
</ul>
<div class="trailer">
<p>Want to contribute? This site is hosted at GitHub as a <a href="http://pages.github.com/" title="GitHub Pages - Home">GitHub Page</a> so if you fancy extending the listing here simply <a href="http://help.github.com/send-pull-requests/" title="Help.GitHub - Send pull requests">send a pull request</a> to <a href="https://github.com/jsonauts/jsonauts.github.com">jsonauts/jsonauts.github.com</a>.</p>
</div>
<p id="jsonaut-def">JSONaut is a wordplay: see <em>Jason and the <a href="http://en.wikipedia.org/wiki/Argonauts" title="Argonauts - Wikipedia, the free encyclopedia">Argonauts</a></em>.
<footer>Contact: <a href="http://github.com/mhausenblas/">Michael Hausenblas</a> | Last update: 2012-05-22 | <a href="https://github.com/jsonauts/jsonauts.github.com">Source</a></footer>
</body>
</html>