-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
384 lines (366 loc) · 16.4 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/vue.min.js" integrity="sha384-FJXuDBvBSlJDfFRoQKUpCcPnXI9gIahgxlgE1AirUdI8udiPWSrlFs7fWqHRInPR" crossorigin="anonymous"></script>
<script id="content" type="application/ld+json">
{
"@context": {
"@vocab": "http://schema.org/",
"doap": "http://usefulinc.com/ns/doap#",
"implements": { "@id": "doap:implements", "@type": "@id" },
"DataFactory": { "@id": "http://rdf.js.org/data-model-spec/#datafactory-interface", "@type": "@id" },
"Source": { "@id": "http://rdf.js.org/stream-spec/#source-interface", "@type": "@id" },
"Sink": { "@id": "http://rdf.js.org/stream-spec/#sink-interface", "@type": "@id" },
"Store": { "@id": "http://rdf.js.org/stream-spec/#store-interface", "@type": "@id" },
"Dataset": { "@id": "http://rdf.js.org/dataset-spec/#dataset-interface", "@type": "@id" }
},
"@type": "WebPage",
"breadcrumb": [{
"@id": "#specifications",
"breadcrumb": [{
"@id": "/data-model-spec/",
"name": "Data Model",
"description": "Basic RDF Data Model (Terms & Quads)"
}, {
"@id": "/dataset-spec/",
"name": "Dataset",
"description": "Dataset extending the basic Data Model"
}, {
"@id": "/stream-spec/",
"name": "Streams",
"description": "Quad stream processing"
}, {
"@id": "/query-spec/",
"name": "Query",
"description": "Query execution in RDF"
}]
}, {
"@id": "#documentations",
"breadcrumb": []
}, {
"@id": "#libraries",
"breadcrumb": [{
"@id": "https://github.com/rdfjs-base/data-model",
"name": "@rdfjs/data-model",
"description": "Basic implementation of RDFJS Data Model.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rdfjs-base/dataset",
"name": "@rdfjs/dataset",
"description": "Basic implementation of RDFJS Dataset.",
"implements": [ "Dataset" ]
}, {
"@id": "/N3.js/",
"name": "n3",
"description": "Lightning fast, spec-compatible, streaming RDF for JavaScript.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/beautifulinteractions/node-quadstore",
"name": "node-quadstore",
"description": "A LevelDB-backed graph database for Node.js and the browser supporting SPARQL queries and the RDF/JS interface.",
"implements": [ "Store" ]
}, {
"@id": "https://github.com/blake-regalia/graphy.js",
"name": "graphy",
"description": "A collection of RDF libraries for JavaScript developers with a focus on performance and usability.",
"implements": [ "DataFactory", "Dataset", "Source", "Sink" ]
}, {
"@id": "https://github.com/comunica/comunica",
"name": "Comunica",
"description": "Comunica is a highly modular and flexible meta query engine for the Web.",
"implements": [ "DataFactory", "Source" ]
}, {
"@id": "https://github.com/rubensworks/jsonld-streaming-parser.js",
"name": "JSON-LD Streaming parser",
"description": "A fast and lightweight streaming JSON-LD parser for JavaScript.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/rdfxml-streaming-parser.js",
"name": "RDF/XML Streaming parser",
"description": "A highly efficient streaming RDF/XML parser.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/jsonld-context-parser.js",
"name": "JSON-LD context parser",
"description": "A generic JSON-LD context parser.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/rdf-test-suite.js",
"name": "RDF Test Suite",
"description": "Executes the RDF and SPARQL test suites.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/rdf-isomorphic.js",
"name": "RDF Isomorphic",
"description": "Determines if two RDF graphs are isomorphic.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/graphql-to-sparql.js",
"name": "GraphQL to SPARQL",
"description": "Converts GraphQL queries to SPARQL queries.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/jest-rdf",
"name": "Jest RDF",
"description": "Jest utilities for RDF(JS)",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/rdf-object.js",
"name": "RDF Object",
"description": "Loads RDF as JSON objects.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/RubenVerborgh/LDflex",
"name": "LDflex",
"description": "A JavaScript DSL for querying Linked Data on the Web",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/fetch-sparql-endpoint.js",
"name": "Fetch SPARQL endpoint",
"description": "A simple, lightweight module to send queries to SPARQL endpoints and retrieve their results in a streaming fashion.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/sparqlxml-parse.js",
"name": "SPARQL/XML Parser",
"description": "Parses SPARQL XML query results.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/sparqljson-parse.js",
"name": "SPARQL/JSON Parser",
"description": "Parses SPARQL JSON query results.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/rdf-quad.js",
"name": "RDF Quad",
"description": "A convenience constructor for RDF quads.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/rdf-string.js",
"name": "RDF String",
"description": "Convenience functions for creating and serializing RDF terms and quads.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/linkeddata/rdflib.js",
"name": "rdflib.js",
"description": "Javascript RDF library for browsers and Node.js.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/joachimvh/SPARQLAlgebra.js",
"name": "SPARQLAlgebra.js",
"description": "SPARQL to SPARQL Algebra converter.",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/rdf-store-stream.js",
"name": "RDF Store Stream",
"description": "Create an RDF store from an RDF stream.",
"implements": [ "DataFactory", "Source" ]
}, {
"@id": "https://github.com/rubensworks/jsonld-streaming-serializer.js",
"name": "JSON-LD Streaming Serializer",
"description": "A fast and lightweight streaming JSON-LD serializer for JavaScript.",
"implements": [ "DataFactory", "Stream" ]
}, {
"@id": "https://github.com/rubensworks/rdfa-streaming-parser.js",
"name": "RDFa Streaming Parser",
"description": "A fast and lightweight streaming RDFa parser for JavaScript.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/microdata-rdf-streaming-parser.js",
"name": "Microdata to RDF Streaming Parser",
"description": "A fast and lightweight streaming Microdata to RDF parser for JavaScript.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/rdf-parse.js",
"name": "RDF Parse",
"description": "Parses RDF from any serialization.",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/rubensworks/rdf-literal.js",
"name": "RDF Literal",
"description": "Translates between RDF literals and JavaScript primitives",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rubensworks/rdf-dereference.js",
"name": "RDF Dereference",
"description": "Dereference any URL for its RDF contents",
"implements": [ "DataFactory", "Sink" ]
}, {
"@id": "https://github.com/tpluscode/rdf-string",
"name": "@tpluscode/rdf-string",
"description": "The easiet way possible to stringify RDF/JS terms",
"implements": [ "Dataset" ]
}, {
"@id": "https://github.com/tpluscode/rdf-ns-builders",
"name": "@tpluscode/rdf-ns-builders",
"description": "Wrappers of @rdfjs/namespace for common vocabularies. Includes Typescript declarations of vocabulary terms extracted from their respective sources",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/tpluscode/sparql-builder",
"name": "@tpluscode/sparql-builder",
"description": "A high level API to simply the construction of SPARQL queries",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/ontola/ontologies#ontologiescore",
"name": "@ontologies/core",
"description": "An RDF data factory for using ontologies in your JS projects",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/rdf-esm/formats-common",
"name": "@rdf-esm/formats-common",
"description": "A browser-friendly set of sinks (parsers and serializers) for common RDF formats",
"implements": [ "Sink" ]
}, {
"@id": "https://github.com/zazuko/rdfjs-elements/tree/master/packages/formats",
"name": "@rdfjs-elements/formats-pretty",
"description": "A browser-friendly set of sinks, with serializers optimized for pretty output",
"implements": [ "Sink" ]
}, {
"@id": "https://github.com/zazuko/rdfjs-elements",
"name": "@rdfjs-elements",
"description": "Web components for editing RDF",
"implements": [ ]
}, {
"@id": "https://zazuko.github.io/clownface/",
"name": "clownface",
"description": "High level graph traversal library",
"implements": [ ]
}, {
"@id": "https://www.npmjs.com/package/clownface-shacl-path",
"name": "clownface-shacl-path",
"description": "Work with SHACL Property Paths using clownface",
"implements": [ ]
}, {
"@id": "https://www.npmjs.com/package/webpack-loader-rdf",
"name": "webpack-loader-rdf",
"description": "Bundle RDF documents statically using webpack, without requiring parsers in runtime",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/semantu/lincd",
"name": "LINCD",
"description": "Library & registry for UI components tied to SHACL shapes, with automatic data validation",
"implements": [ "DataFactory" ]
}, {
"@id": "https://github.com/hypermedia-app/express-rdf-request",
"name": "express-rdf-request",
"description": "Express middleware for working with RDF payloads using clownface",
"implements": [ ]
}, {
"@id": "https://github.com/hypermedia-app/express-middleware-shacl",
"name": "express-middleware-shacl",
"description": "Express middleware for validating RDF payloads with SHACL",
"implements": [ ]
}
]
}]
}
</script>
<style>
h1, h2 {
text-align: center;
}
section {
margin-bottom: 2em;
}
.card {
margin-bottom: 1em;
}
.interface {
font-size: 0.8em;
}
</style>
<title>RDF JavaScript Libraries</title>
</head>
<body>
<div id="app">
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="https://avatars1.githubusercontent.com/u/6156399?s=100" width="30" height="30" class="d-inline-block align-top" alt="">
RDFJS
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="specificationsDropdown" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Specifications</a>
<div class="dropdown-menu" aria-labelledby="specificationsDropdown">
<a class="dropdown-item" v-for="specification in specifications" :href="specification['@id']">{{ specification.name }}</a>
</div>
</li>
</ul>
</div>
</nav>
</header>
<div class="jumbotron">
<h1>RDF JavaScript Libraries</h1>
</div>
<div class="container">
<section v-if="specifications.length">
<h2>Specifications</h2>
<div class="row">
<div class="col-md-4" v-for="specification in specifications">
<div class="card">
<div class="card-body">
<h5 class="card-title"><a :href="specification['@id']">{{ specification.name }}</a></h5>
<p class="card-text">{{ specification.description }}</p>
</div>
</div>
</div>
</div>
</section>
<section v-if="documentations.length">
<h2>Documentation</h2>
<div class="row">
<div class="col-md-4" v-for="documentation in documentations">
<div class="card">
<div class="card-body">
<h5 class="card-title"><a :href="documentation['@id']">{{ documentation.name }}</a></h5>
<p class="card-text">{{ documentation.description }}</p>
</div>
</div>
</div>
</div>
</section>
<section v-if="libraries.length">
<h2>Libraries</h2>
<div class="row">
<div class="col-md-4" v-for="library in libraries">
<div class="card">
<div class="card-body">
<h5 class="card-title"><a :href="library['@id']">{{ library.name }}</a></h5>
<p class="card-text">{{ library.description }}</p>
<span class="interface" v-for="interface in library['implements']">
{{ interface }}
</span>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<script>
const content = JSON.parse(document.getElementById('content').innerText)
const { specifications, documentations, libraries } = content.breadcrumb.reduce((list, item) => {
list[item['@id'].substr(1)] = item.breadcrumb
return list
}, {})
new Vue({
el: '#app',
data: {
specifications,
documentations,
libraries
}
})
</script>
</body>
</html>