@rdfc/js-runner 0.2.2 → 1.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/bin/bundle.mjs +30596 -30679
- package/dist/args.js +19 -7
- package/dist/connectors/file.js +3 -3
- package/dist/connectors/http.js +8 -7
- package/dist/connectors/kafka.js +7 -7
- package/dist/connectors/ws.js +5 -5
- package/dist/connectors.d.ts +2 -0
- package/dist/connectors.js +13 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -8
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/util.js +1 -1
- package/package.json +24 -22
- package/processor/test.js +22 -22
- package/dist/index.cjs +0 -655
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Js-runner
|
|
2
2
|
|
|
3
|
-
[](https://github.com/rdf-connect/js-runner/actions/workflows/build-test.yml) [](https://npmjs.com/package/@rdfc/js-runner)
|
|
4
4
|
|
|
5
5
|
Typescript/Javascript executor for an [RDF-Connect](https://rdf-connect.github.io/rdfc.github.io/) pipeline. Starting from a declarative RDF file describing the pipeline.
|
|
6
6
|
|
|
@@ -34,7 +34,7 @@ You can execute this pipeline with
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
tsc
|
|
37
|
-
|
|
37
|
+
npx bin/js-runner.js input.ttl
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
This example input configuration file uses `owl:imports` to specify additional configuration files.
|
|
40
|
+
This example input configuration file uses `owl:imports` to specify additional configuration files.
|