Socket
Socket
Sign inDemoInstall

@json-schema-spec/json-pointer

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @json-schema-spec/json-pointer

This package provides a TypeScript and JavaScript implementation of [RFC6901 JavaScript Object Notation (JSON) Pointer][rfc6901].


Version published
Weekly downloads
7.9K
increased by12.87%
Maintainers
1
Install size
12.7 kB
Created
Weekly downloads
 

Readme

Source

json-pointer Documentation

This package provides a TypeScript and JavaScript implementation of RFC6901 JavaScript Object Notation (JSON) Pointer.

Usage

Construct a JSON Pointer using Ptr.parse, and then evaluate the pointer using .eval(). You can convert back to a string using .toString().

import Ptr from "@json-schema-spec/json-pointer"

const data = {
  path: {
    to: {
      thing: [
        "foo",
        "bar",
        "baz",
      ],
    },
  },
};

const pointer = Ptr.parse("/path/to/thing/2");
console.log(pointer.eval(data)); // Output: baz
console.log(pointer.toString()) // Output: /path/to/thing/2

If a JSON Pointer points to a non-existent property of its input, then .eval() will throw EvalError:

import Ptr, { EvalError } from "@json-schema-spec/json-pointer"

const data = {
  path: {
    to: {
      thing: [
        "foo",
        "bar",
        "baz",
      ],
    },
  },
};

const pointer = Ptr.parse("/path/to/thing/4");
try {
  pointer.eval(data);
} catch (err) {
  if (err instanceof EvalError) {
    console.log(err.instance); // Output: ["foo", "bar", "baz"]
    console.log(err.token); // Output: 4
  }
}

If you're interested in parsing JSON Pointers that might be invalid, you can catch these errors by looking for InvalidPtrError:

import Ptr, { InvalidPtrError } from "@json-schema-spec/json-pointer"

try {
  Ptr.parse(" invalid json pointer")
} catch (err) {
  if (err instanceof InvalidPtrError) {
    console.error(err.ptr) // Output:  invalid json pointer
  }
}

FAQs

Last updated on 14 Feb 2019

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc