node package manager npm private modules npm Enterprise documentation blog npm weekly jobs support sign up or log in If you are a robot, enter text here JSONPathCLI A cli program for running JSONPath queries. Wrapper of s3u/JSONPath #JSONPathCLI A cli program wrapping JSONPath ##Installation npm install JSONPathCLI -g ##Usage Accepts a jsonpath query as a parameter, and an optional filename to operate on jsonpath $..* albums.json If no file is provided it acts on stdin cat albums.json | jsonpath $..* Use the -c option to display a jsonpath cheatsheet jsonpath -c ##Output If the results are of a primitive type (string, number, boolean), they are output separated by a newline. $ jsonpath $..author sample.json Nigel Rees Evelyn Waugh Herman Melville J. R. R. Tolkien $ jsonpath $..price sample.json 8.95 12.99 8.99 22.99 19.95 If the res...