npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@shexjs/util

v1.0.0-alpha.28

Published

Shape Expressions validation and utilities.

Downloads

1,931

Readme

NPM Version ShapeExpressions Gitter chat https://gitter.im/shapeExpressions/Lobby DOI

@shexjs/writer

Utility functions to work with ShExJ schemas

install

npm install --save @shexjs/writer

Invocation

Using Partition(<schema>, [<URL>s]) as an example, an illustrative way to invoke from it from the command line uses @shexjs/parser and @shexjs/writer:

node -e 'const base = "http://a.example/"
  const schema = require("@shexjs/parser")
    .construct(base, {v: "http://a.example/vocab#"})
    .parse("<S1> { <p1> .; <p2> @<S2>? } <S2> { <p3> @<S3> } <S3> { <p4> @<S1> } <S4> { <p5> . }")
  const partition = require("@shexjs/util").partition(schema, [base + "S2"])
  new (require("@shexjs/writer"))({ base, simplifyParentheses: true })
    .writeSchema(partition,
      (error, text, prefixes) => {
        if (error)
          throw error;
        console.log(text);
      })'

The result is a ShExJ expression of the input schema:

BASE <http://a.example/>
<S2> {
  <p3> @<S3>
}
<S3> {
  <p4> @<S1>
}
<S1> {
    <p1> . ;
    <p2> @<S2>?
}

Note that <S2> in the input schema has no references to <S1>:

<S1> {
  <p1> .;
  <p2> @<S2>?
}
<S2> {
  <p3> @<S3>
}
<S3> {
  <p4> @<S1>
}
<S4> {
  <p5> .
}

ShExJtoAS(schema)

Parse a ShExJ schema and add ._prefixes and ._index for efficient processing within shexj.js

ShExAStoJ(schema)

Remove ._prefixes and ._index from internal schema structure and add schema["@context"] || "http://www.w3.org/ns/shex.jsonld"

ShExRVisitor:(knownShapeExprs), ShExRtoShExJ(schema-like-object)

Internal functions for parsing ShExR

canonicalize(schema, trimIRI)

Normalize ShExJ by moving all tripleExpression references to their first expression.

BiDiClosure

construct an object with this api:

  • needs: {} - mapping from needer to needie
  • neededBy: {} - reverse mapping of needs
  • add(needer, needie, negated) - record that needer referenced needied, possibly in a negation

nestShapes(schema, options = {})

See which shape declarations have no coreferences and can be nested inside their sole referrer.

options

  • no: don't do anything; just report nestable shapes
  • transform: function to change shape labels

getPredicateUsage(schema, untyped = {})

Return which predicates appear in which shapes, what their common type is, and whether they are polymorphic.

getDependencies(schema, ret)

Find which shappes depend on other shapes by inheritance or inclusion.

Partition(, [s])

Create subset of a schema with only desired shapes and their dependencies.

merge(left, right, overwrite, inPlace)

Merge right schema onto left schema if inPlace is true; otherwise return a new merged schema. overwrite: boolean specifies whether to replace and old shape declaration with a new one of the same name.

absolutizeResults(res, base)

In validation resutls with some relative URLs in it, re-evaluate all [shape, reference, node, subject, predicate, object] property values against base.

getProofGraph(res, db, dataFactory)

Parse a validation result and call db.addQuad() with each triple involved in validation.

Note, this may call db.addQuad() multiple times with the same triple if that triple appears more than once in the validation results.

isWellDefined(schema)

Verify that schema has all necessary referents and conforms to ShEx's stratified negation rules.

valuesToSchema(values)

Convert the results of validating an instance of ShExR against ShExR.shex into a ShExJ schema.

errsToSimple(failure)

Attempt to make a validation failure human-readable.

executeQuery(query, endpoint, dataFactory)

Synchronously Execute a SPARQL query against and endpoint.

executeQueryPromise(query, endpoint, dataFactory)

Asynchronously Execute a SPARQL query against and endpoint.

parseSparqlJsonResults (jsonObject)

Parse JSON results to internal RDF term representations.

parseSparqlXmlResults_dom(doc)

Parse XML results in a DOM to internal RDF term representations.

parseSparqlXmlResults_jquery(jqObj)

Parse XML results to internal RDF term representations using JQuery.

Lerna Monorepo

This repo uses lerna to manage multiple NPM packages. These packages are located in packages/*: