npm.io
1.4.0 • Published 1 year ago

rdf-dereference-store

Licence
MIT
Version
1.4.0
Deps
8
Size
8 kB
Vulns
0
Weekly
0
Stars
3

RDF Dereference Store

Dereference a remote dataset to a store using rdf-dereference.

GitHub license npm version build Dependabot semantic-release

Usage

import fs from 'fs';
import dereference, { parse } from 'rdf-dereference-store';

// Fetch store from a remote document
const { store } = await dereference('https://www.jeswr.org/#me');

// Fetch store from a local document
const { store } = await dereference('/path/to/file.ttl', { localFiles: true });

// Fetch store from an input stream
const { store } = await parse(fs.createReadStream('/path/to/file.ttl'), { contentType: 'text/turtle' });

// Fetch store from an input string
const { store } = await parse(fs.readFileSync('/path/to/file.ttl').toString(), { contentType: 'text/turtle' });

License

2024–present Jesse Wright, MIT License.

Keywords