Skip to content

Commit c0b51ec

Browse files
vidbrettz9
andauthored
feat: add basic cli (#206)
Co-authored-by: Brett Zamir <brettz9@yahoo.com>
1 parent b292631 commit c0b51ec

File tree

5 files changed

+53
-2
lines changed

5 files changed

+53
-2
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,10 @@ from 0), whereas in XPath, they are 1-based.
368368
1. In JSONPath, equality tests utilize (as per JavaScript) multiple equal signs
369369
whereas in XPath, they use a single equal sign.
370370

371+
## Command line interface
372+
373+
A basic command line interface (CLI) is provided. Access it using `npx jsonpath-plus <json-file> <jsonpath-query>`.
374+
371375
## Ideas
372376

373377
1. Support OR outside of filters (as in XPath `|`) and grouping.
@@ -396,3 +400,4 @@ npm run browser-test
396400
## License
397401

398402
[MIT License](https://opensource.org/license/mit/).
403+

badges/coverage-badge.svg

+1-1
Loading

bin/jsonpath-cli.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#!/usr/bin/env node
2+
import {readFile} from 'fs/promises';
3+
import {JSONPath as jsonpath} from '../dist/index-node-esm.js';
4+
5+
const file = process.argv[2];
6+
const path = process.argv[3];
7+
8+
try {
9+
const json = JSON.parse(await readFile(file, 'utf8'));
10+
runQuery(json, path);
11+
} catch (e) {
12+
/* eslint-disable no-console -- CLI */
13+
console.error(`usage: ${process.argv[1]} <file> <path>\n`);
14+
console.error(e);
15+
/* eslint-enable no-console -- CLI */
16+
process.exit(1);
17+
}
18+
19+
/**
20+
* @typedef {any} JSON
21+
*/
22+
23+
/**
24+
* @param {JSON} json
25+
* @param {string} pth
26+
* @returns {void}
27+
*/
28+
function runQuery (json, pth) {
29+
const result = jsonpath({
30+
json,
31+
path: pth
32+
});
33+
34+
// eslint-disable-next-line no-console -- CLI
35+
console.log(result);
36+
}

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"name": "jsonpath-plus",
44
"version": "8.0.0",
55
"type": "module",
6+
"bin": {
7+
"jsonpath": "./bin/jsonpath-cli.js",
8+
"jsonpath-plus": "./bin/jsonpath-cli.js"
9+
},
610
"main": "dist/index-node-cjs.cjs",
711
"exports": {
812
"./package.json": "./package.json",
@@ -137,6 +141,7 @@
137141
"node-import-test": "node --experimental-modules demo/node-import-test.mjs",
138142
"open": "open-cli http://localhost:8084/demo/ && npm start",
139143
"start": "http-server -p 8084",
144+
"cli": "./bin/jsonpath-cli.js package.json name",
140145
"typescript": "tsc -p src",
141146
"mocha": "mocha --require test-helpers/node-env.js --reporter-options configFile=mocha-multi-reporters.json test",
142147
"c8": "rm -Rf ./coverage && rm -Rf ./node_modules/.cache && c8 --all npm run mocha && npm run coverage-badge",

rollup.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function getRollupObject ({
4242
babel({
4343
babelrc: false,
4444
presets: [
45-
environment === 'node'
45+
environment === 'node' || environment === 'cli'
4646
? ['@babel/preset-env', {
4747
targets: [
4848
`node ${pkg.engines.node}`
@@ -90,6 +90,11 @@ function getRollupObjectByEnv ({minifying, environment}) {
9090
export default [
9191
...getRollupObjectByEnv({minifying: false, environment: 'node'}),
9292
// ...getRollupObjectByEnv({minifying: true, environment: 'node'}),
93+
// getRollupObject({
94+
// input: 'bin/jsonpath-cli.js', format: 'esm',
95+
// minifying: false, environment: 'cli',
96+
// external: ['fs/promises', 'vm']
97+
// }),
9398
...getRollupObjectByEnv({minifying: false, environment: 'browser'}),
9499
...getRollupObjectByEnv({minifying: true, environment: 'browser'})
95100
];

0 commit comments

Comments
 (0)