JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 16
  • Score
    100M100P100Q56952F
  • License MIT

Simple, fast, n-quads and n-triples parser

Package Exports

  • n-quads-parser

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (n-quads-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

NQuads parser

This is a basic, but fast pure-js n-quads/triples parser. It has no dependencies to node and can be run in the browser.

Installation

yarn add n-quads-parser @ontologies/core

npm i n-quads-parser @ontologies/core

Usage

This was written as a faster n-quads parser for link-lib and designed to work with rdflib.js.

The parser is already integrated into link-lib which can also consume linked-delta payloads in addition to plain n-quads.

If you're looking for a quick and easy way to build linked-data based RDF applications, check out link-redux.

Plain javascript:

import rdf from '@ontologies/core';

// Can also be IndexedFormula from rdflib.js or RDFStore from link-lib.
const store = {
    rdfFactory: rdf,
    quads: [],
    
    add(s, p, o, g) {
      this.quads.push(rdf.quad(s, p, o, g));
    }
}

const parser = new NQuadsParser(store);

fetch(url)
  .then((req) => req.text())
  .then((body) => parser.loadBuf(body));

// The quads should be loaded into the store.

TODO: