New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@treecg/actor-init-ldes-client

Package Overview
Dependencies
Maintainers
5
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@treecg/actor-init-ldes-client

An init actor that fetches members from an Event Stream API

  • 2.0.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
decreased by-4.26%
Maintainers
5
Weekly downloads
 
Created
Source

@treecg/actor-init-ldes-client

Metadata harvester for a Linked Data Event Stream.

Install

npm install -g @treecg/actor-init-ldes-client

In order to use it as a library, you can leave out the -g.

How to use it

Usage from the command line

actor-init-ldes-client --parameter ${PARAMETER} ${URL}

Possible parameters:

ParameterDescriptionPossible values
pollingIntervalNumber of milliseconds before refetching uncacheable fragmentsfor example: 5000
mimeTypethe MIME type of the outputapplication/ld+json, text/turtle...
contextpath to a file with the JSON-LD context you want to use when MIME type is application/ld+jsonfor example: ./context.jsonld
fromTimedatetime to prune relations that have a lower datetime valuefor example: 2020-01-01T00:00:00
emitMemberOncewhether to emit a member only once, because collection contains immutable version objects.true / false

Example commando with parameters:

actor-init-ldes-client --pollingInterval 5000 --mimeType application/ld+json --context context.jsonld --fromTime 2021-02-03T15:48:12.309Z --emitMemberOnce true https://lodi.ilabt.imec.be/coghent/dmg/objecten

Usage within application

The easiest way to create an engine (with default config) is as follows:

const newEngine = require('@treecg/actor-init-ldes-client').newEngine;

const LDESClient = new newEngine();

With the engine or client created, you can now use it to call te async createReadStream(url, options) method. Here is an example synchronizing with a TREE root node of an Event Stream with polling interval of 5 seconds:

 main()
 
 function main() {
     try {
         let url = "https://lodi.ilabt.imec.be/coghent/dmg/objecten";
         let options = {
             "pollingInterval": 5000, // millis
             "mimeType": "application/ld+json",
             "fromTime": new Date("2021-02-03T15:46:12.307Z"),
             "emitMemberOnce": true,
             "jsonLdContext": {
                 "@context": [
                     "https://data.vlaanderen.be/doc/applicatieprofiel/cultureel-erfgoed-object/kandidaatstandaard/2020-07-17/context/cultureel-erfgoed-object-ap.jsonld",
                     "https://data.vlaanderen.be/context/persoon-basis.jsonld",
                     "https://brechtvdv.github.io/demo-data/cultureel-erfgoed-event-ap.jsonld",
                     {
                         "dcterms:isVersionOf": {
                             "@type": "@id"
                         },
                         "prov": "http://www.w3.org/ns/prov#"
                     }
                 ]
             }
         };
         let eventstreamSync = LDESClient.createReadStream(url, options);
         eventstreamSync.on('data', (data) => {
             let obj = JSON.parse(data)
             console.log(obj)
         });
         eventstreamSync.on('end', () => {
             console.log("No more data!")
         });
     } catch (e) {
         console.error(e);
     }
 }

FAQs

Package last updated on 08 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc