npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

json-p3

v1.3.0

Published

JSONPath, JSON Pointer and JSON Patch

Downloads

613

Readme


import { jsonpath } from "json-p3";

const data = {
  users: [
    { name: "Sue", score: 100 },
    { name: "John", score: 86 },
    { name: "Sally", score: 84 },
    { name: "Jane", score: 55 },
  ],
};

const nodes = jsonpath.query("$.users[[email protected] < 100].name", data);
console.log(nodes.values()); // [ 'John', 'Sally', 'Jane' ]

Links

  • Docs: https://jg-rp.github.io/json-p3/
  • Install: https://jg-rp.github.io/json-p3/#install
  • JSONPath playground: https://jg-rp.github.io/json-p3/playground
  • JSONPath syntax: https://jg-rp.github.io/json-p3/guides/jsonpath-syntax
  • API reference: https://jg-rp.github.io/json-p3/api
  • Change log: https://github.com/jg-rp/json-p3/blob/main/CHANGELOG.md
  • NPM: https://www.npmjs.com/package/json-p3
  • Issue tracker: https://github.com/jg-rp/json-p3/issues

Bundles

JSON P3 is written in TypeScript, compiled to JavaScript using Babel, and bundled using Rollup. The following, included bundles target defaults, maintained node version, as defined by Browserslist.

JSON P3 has zero runtime dependencies.

| Bundle | Description | | --------------------- | -------------------------------------------------------------------------- | | json-p3.cjs.js | A CommonJS formatted bundle. | | json-p3.esm.js | An ECMAScript module formatted bundle. | | json-p3-iife.js | A bundle formatted as an Immediately Invoked Function Expression. | | json-p3-iife.min.js | A minified bundle formatted as an Immediately Invoked Function Expression. |

Compliance Environment Variables

These environment variables control the location of the compliance test suite under test and if nondeterministic object iteration is enabled for those tests.

| Environment Variable | Description | | ----------------------------- | --------------------------------------------------------------------------------------------------------------------- | | JSONP3_CTS_PATH | The path to cts.json used by compliance.test.ts. Defaults to tests/path/cts/cts.json. | | JSONP3_CTS_NONDETERMINISTIC | When set to true, enables nondeterministic iteration of JSON objects for compliance.test.ts. Defaults to false. |

Contributing

Please see Contributing to JSON P3

License

json-p3 is distributed under the terms of the MIT license.