🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

oni-indexer

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oni-indexer

Builds a Solr index for an oni data repository

1.2.0
latest
Source
npm
Version published
Weekly downloads
16
1500%
Maintainers
1
Weekly downloads
 
Created
Source

JSON LD Solr Indexer

NOTES:

  • Currently spec'd to work only with Datacrate JSON-LD.

TODO:

  • build schema of solr with config file
  • Generalise to use any json-ld
  • Make createROCrateIndexer as part of the library
  • Test with other types of json-ld's

Example implementation:

Generate JSON-LDs

node generate-datacrates.js -d ./test-data/generated/ -n 100

or

npm run generate

Commit to SOLR

Modify config.json to suit your needs.

Use

node ./commit-to-solr.js --config ./config.json

or

npm run commit

Detail

const fieldConfig = require('./fields.json');
let indexer = new ROCrateIndexer();
indexer.setConfig(fieldConfig);

const entryPath = path.join('test-data','CATALOG.json');
let entryJson = fs.readFileSync(entryPath).toString();
entryJson = JSON.parse(entryJson);

const solrObject = await indexer.createSolrObject(entryJson, '@graph');

Keywords

solr

FAQs

Package last updated on 25 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