This package is no longer maintained and not compatible with the latest RDF-Ext version. Similar functionality can be found in the rdf-store-web package.
RESTful LDP RDF Store that follows the RDF Interface specification
npm install --save rdf-store-ldp
Store implementation to access graphs via a RESTful LDP interface.
The constructor accepts a single options
parameters.
The options
object can have the following properties:
defaultParser
If the response uses an unknow mime type, that parse is used by default. By default 'text/turtle' is used.defaultSerializer
The mime type and serializer used for write requests. By default 'text/turtle' is used.parsers
Map that contains mime type to parser function key value pairs. By default LdpStore.defaultParsers is usedrequest
Replaces the default request function. See the utils sections for implementations provided by RDF-Ext.serializers
Map that contains mime type to serialize function key value pairs. By default LdpStore.defaultSerializers is used
Taken from zazukoians/rdf-ext
MIT