Skip to content

Modules

Thomas Bergwinkl edited this page Jun 8, 2016 · 2 revisions

RDF-Ext 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

Also see rdf-formats-common if you want to get support for the most common formats.

Serializers

  • Abstract - Can be used to implement own serializers
  • JSON-LD - Outputs JSON-LD in flat document form
  • N-Triples - Uses the .toNT() method to serialize N-Triples
  • RDF/XML - A basic RDF/XML serializer
  • SPARQL Update - Generates INSERT DATA SPARQL updates
  • Turtle - Uses N3.js for serializing

Also see rdf-formats-common if you want to get support for the most common formats.

Stores

  • Abstract - Abstract implementation, can be used to build your own store
  • ACL wrapper - Add ACL support to your RDF store
  • File system - Using the file system
  • In Memory - Store loaded in memomory
  • LDP - Query an external Linked Data Platform via RESTful HTTP requests
  • Local/Remote - Uses a local store or a remote store depending on the IRI
  • Multistore - Use multiple store depending on the IRI
  • Single graph (memory) - Store has only a single graph
  • SPARQL - Uses the Graph Store HTTP Protocol interface

Others

  • Clownface - Simple but powerful graph traversing library
  • Common Formats - Loads parsers and serializers for the most common formats
  • SimpleRDF - Simple but powerful graph to object mapping
  • RDF body parser - Node.js body parsing middleware, parses incoming RDF data
Clone this wiki locally