
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@json-schema-spec/json-pointer
Advanced tools
This package provides a TypeScript and JavaScript implementation of [RFC6901 JavaScript Object Notation (JSON) Pointer][rfc6901].
This package provides a TypeScript and JavaScript implementation of RFC6901 JavaScript Object Notation (JSON) Pointer.
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
This package provides a TypeScript and JavaScript implementation of [RFC6901 JavaScript Object Notation (JSON) Pointer][rfc6901].
The npm package @json-schema-spec/json-pointer receives a total of 21,312 weekly downloads. As such, @json-schema-spec/json-pointer popularity was classified as popular.
We found that @json-schema-spec/json-pointer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.