All Projects → rdf-ext → Rdf Ext

rdf-ext / Rdf Ext

Licence: other
RDF library for NodeJS and the Browsers

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Rdf Ext

Hypergraphql
GraphQL interface for querying and serving linked data on the Web.
Stars: ✭ 120 (+23.71%)
Mutual labels:  linked-data, rdf, json-ld, sparql
Hypergraphql
GraphQL interface for querying and serving linked data on the Web.
Stars: ✭ 112 (+15.46%)
Mutual labels:  linked-data, rdf, json-ld, sparql
twinql
A graph query language for the semantic web
Stars: ✭ 17 (-82.47%)
Mutual labels:  linked-data, rdf, json-ld
titanium-json-ld
A JSON-LD 1.1 Processor & API
Stars: ✭ 79 (-18.56%)
Mutual labels:  linked-data, rdf, json-ld
CSV2RDF
Streaming, transforming, SPARQL-based CSV to RDF converter. Apache license.
Stars: ✭ 48 (-50.52%)
Mutual labels:  linked-data, sparql, rdf
Jsonld.js
A JSON-LD Processor and API implementation in JavaScript
Stars: ✭ 1,212 (+1149.48%)
Mutual labels:  linked-data, rdf, json-ld
viziquer
Tool for Search in Structured Semantic Data
Stars: ✭ 12 (-87.63%)
Mutual labels:  linked-data, sparql, rdf
YALC
🕸 YALC: Yet Another LOD Cloud (registry of Linked Open Datasets).
Stars: ✭ 14 (-85.57%)
Mutual labels:  linked-data, rdf, json-ld
jsonld-context-parser.js
Parses JSON-LD contexts
Stars: ✭ 20 (-79.38%)
Mutual labels:  linked-data, rdf, json-ld
LinkedDataHub
The Knowledge Graph notebook. Apache license.
Stars: ✭ 150 (+54.64%)
Mutual labels:  linked-data, sparql, rdf
sparql-micro-service
SPARQL micro-services: A lightweight approach to query Web APIs with SPARQL
Stars: ✭ 22 (-77.32%)
Mutual labels:  linked-data, sparql, rdf
jarql
SPARQL for JSON: Turn JSON into RDF using SPARQL syntax
Stars: ✭ 19 (-80.41%)
Mutual labels:  linked-data, sparql, rdf
matcha
🍵 SPARQL-like DSL for querying in memory Linked Data Models
Stars: ✭ 18 (-81.44%)
Mutual labels:  linked-data, sparql, rdf
Processor
Ontology-driven Linked Data processor and server for SPARQL backends. Apache License.
Stars: ✭ 54 (-44.33%)
Mutual labels:  linked-data, sparql, rdf
semagrow
A SPARQL query federator of heterogeneous data sources
Stars: ✭ 27 (-72.16%)
Mutual labels:  linked-data, sparql, rdf
LD-Connect
LD Connect is a Linked Data portal for IOS Press in collaboration with the STKO Lab at UC Santa Barbara.
Stars: ✭ 0 (-100%)
Mutual labels:  linked-data, sparql, rdf
rdf2x
RDF2X converts big RDF datasets to the relational database model, CSV, JSON and ElasticSearch.
Stars: ✭ 43 (-55.67%)
Mutual labels:  linked-data, sparql, rdf
Pyld
JSON-LD processor written in Python
Stars: ✭ 413 (+325.77%)
Mutual labels:  linked-data, rdf, json-ld
ControlledVocabularyManager
Rails application with Blazegraph for managing controlled vocabularies in RDF.
Stars: ✭ 20 (-79.38%)
Mutual labels:  linked-data, rdf, json-ld
sparql-transformer
A more handy way to use SPARQL data in your web app
Stars: ✭ 38 (-60.82%)
Mutual labels:  linked-data, sparql, json-ld

RDF Interfaces Extension

Build Status npm version

RDF-Ext provides a low-level JavaScript library for working with RDF & Linked Data. This module contains the core classes to handle RDF Model data. Additional modules may be required to handle data in different formats (Turtle, JSON-LD) or stores (Web, SPARQL). The module section lists the most common modules.

By including this package, you will get an implementation of:

This should be all needed for starting to work with RDF in JavaScript. If you interact with named nodes directly we recommend namespace, which gives a nice interface for creating named nodes.

If you are looking for a more high-level interaction with RDF in JavaScript you might consider the graph traversal library clownface and another abstraction on top of clownface called RDFine. RDF-Ext provides the technical foundation and is included in both projects.

Usage

In general, consult the RDFJS specification for details about how to interact with the library.

Node

RDF-Ext is available on npm, to install it run:

npm install rdf-ext

In the code, import RDF-Ext:

const rdf = require('rdf-ext')

Browser

The preferred way to use RDF-Ext in the browser is using browserify.

Distribution

It's also possible to use a prebuilt or custom distribution using the RDF-Ext distribution builder. This can be also done using the RDF-Ext distribution builder site.

Than just import the RDF-Ext distribution:

<script src="/js/rdf-ext.js"></script>

Everything is attached to the global variable rdf.

Support

Issues & feature requests should be reported on Github.

Pull requests are very welcome.

Modules

There are many modules for parsing, serializing, stores for persistence and simplified data handling. In general, all modules are available at npm and you can use the Github repository name to install them.

Parsers

If you want to get out of the box support for the most common formats, use Common Formats.

Serializers

  • JSON-LD - Outputs JSON-LD in flat document form
  • or JSON-LD - Outputs JSON-LD with prefix support and more document forms
  • N-Triples - Outputs N-Triples
  • CSV - CSV on the Web serializer that implements the RDFJS Sink interface.

If you want to get out of the box support for the most common formats, use Common Formats.

Stores

Implementations of the RDFJS Store interface.

  • Dataset - Wrapper around an in memory Dataset
  • SPARQL - Uses the SPARQL 1.1 Protocol
  • Filesystem - Filesystem based RDF Store that follows the RDF/JS: Stream interfaces specification.
  • Web - Query an external Linked Data via RESTful HTTP requests

Others

  • Common Formats - Loads parsers and serializers for the most common formats
  • Clownface - A graph traversal library inspired by Gremlin which allows querying any RDF dataset in a concise and readable way.
  • Express-Handler - Handle incoming and outgoing RDF data in Express
  • Fetch - Uses Fetch to send and receive RDF-Ext Graphs over HTTP
  • Fetch lite - Same as above but does not include common parsers and serializers so it is lightweight
  • Namespace - The package exports a factory to create builders for Named Nodes.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].