Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

clownface

zazuko136.7kMIT2.0.3TypeScript support: definitely-typed

Simple but powerful graph traversing library

rdf, graph, traversing

readme

clownface

Build Status NPM Version

Clownface is a graph traversal library inspired by Gremlin which allows to query any RDF dataset in a concise and readable way.

Clownface greatly simplifies interacting with RDF data in JavaScript.

Quick start

The recommended way is to use clownface with and RDF/JS environment. It also requires DataFactory and DatasetFactory, for example those provided by @rdfjs/data-model and @rdfjs/dataset packages respectively, as well as @rdfjs/namespace.

npm install clownface @rdfjs/environment @rdfjs/data-model @rdfjs/dataset @rdfjs/namespace
`
import Environment from '@rdfjs/environment/Environment.js'
import NamespaceFactory from '@rdfjs/namespace/Factory.js'
import DatasetFactory from '@rdfjs/dataset/Factory.js'
import DataFactory from '@rdfjs/data-model/Factory.js'
import ClownfaceFactory from 'clownface/Factory.js'

const $rdf = new Environment([
  NamespaceFactory,
  DatasetFactory,
  DataFactory,
  ClownfaceFactory
])

const graph = $rdf.clownface()

Alternatively, if you already use @zazuko/env, it comes bundled with clownface and its dependencies.

import $rdf from '@zazuko/env'

const graph = $rdf.clownface()

Learn more

If you are new to RDF and JavaScript, consider our Getting Started guide that also covers Clownface basics.

For API documentation and examples, see http://zazuko.github.io/clownface/.

changelog

clownface

2.0.3

Patch Changes

  • e9da738: chore: update package links

2.0.2

Patch Changes

  • 25f4bf9: Adjust to @rdfjs/environment@v1 (still compatible with v0)

2.0.1

Patch Changes

  • 810ede5: Fixes a problem that in some scenarios when operating on a MultiPointer would use clownface's default environment which causes clashing blank node being generated

2.0.0

Major Changes

  • c1441a4: Update to ESM

Minor Changes

  • c1441a4: Uses @rdfjs/environment instead of directly importing individual packages
  • 1caa1ae: Added RDF/JS environment factory module