canton-consulting / jsonld-cli

JSON-LD command line interface tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jsonld-cli

Dependency Status

Introduction

This module provides a command line tool jsonld to manipulate JSON-LD data. It is written in JavaScript for node.js and uses the jsonld.js and jsonld-request. Inputs can be from stdin, URLs, or files.

Requirements

Installation

npm install -g jsonld-cli

Usage

The jsonld command line tool can be used to:

  • Transform JSON-LD to compact, expanded, normalized, or flattened form
  • Transform RDFa to JSON-LD
  • Normalize JSON-LD/RDFa Datasets to NQuads

To show tool options, a list of commands, or command options:

jsonld --help
jsonld COMMAND --help

To compact a document on the Web using a JSON-LD context published on the Web:

jsonld compact -c "https://w3id.org/payswarm/v1" "http://recipes.payswarm.com/?p=10554"

The command above will read in a PaySwarm Asset and Listing in RDFa 1.0 format, convert it to JSON-LD expanded form, compact it using the 'https://w3id.org/payswarm/v1' context, and dump it out to the console in compacted form.

jsonld normalize -q "http://recipes.payswarm.com/?p=10554"

The command above will read in a PaySwarm Asset and Listing in RDFa 1.0 format, normalize the data using the RDF Dataset normalization algorithm, and then dump the output to normalized NQuads format. The NQuads can then be processed via SHA-256, or similar algorithm, to get a deterministic hash of the contents of the Dataset.

Commercial Support

Commercial support for this library is available upon request from Digital Bazaar: support@digitalbazaar.com

Source Code

http://github.com/digitalbazaar/jsonld-cli

About

JSON-LD command line interface tool

License:Other


Languages

Language:JavaScript 100.0%