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

pointer-props

v1.1.4

Published

JavaScript object manipulation (get/set/del) using JSON Pointer (RFC6901) and JSON Reference paths.

Downloads

194

Readme

pointer-props

JavaScript object manipulation (get/set/del) using JSON Pointer (RFC6901) syntax, and optional resolution of JSON References.

Install

The usual ways:

npm install pointer-props

Example

Get or set a property, either using the JSON Pointer string or with an array:

import { get, set } from 'pointer-props'
const obj = { foo: { bar: 3 } }
get(obj, '/foo/bar') // => 3
get(obj, [ 'foo', 'bar' ]) // => 3
set(obj, '/foo/bar', 4) // => { foo: { bar: 4 } }
set(obj, [ 'foo', 'bar' ], 5) // => { foo: { bar: 5 } }

Resolve JSON Reference paths to the final non-referenced path (as an array):

import { resolve } from 'pointer-props'
const obj = {
	foo: { $ref: '#/fizz/buzz' },
	fizz: { buzz: 3 }
}
resolve('#/foo/bar') // => [ 'fizz', 'buzz' ]

Handles escaped strings, as expected:

const obj = {
	'f/o/o': {
		'b~a~r': 3
	}
}
get(obj, '/f~1o~1o/b~0a~0r') // => 3

Generate escaped strings from a list of tokens, or a list of tokens from a string:

import { toPointer, toTokens } from 'pointer-props'
toPointer([ 'a/b', 'c~d' ]) // => "/a~1b/c~0d"
toTokens('/a~1b/c~0d') // => [ "a/b", "c~d" ]

API

Under the hood, the get/set functions use the amazing dset and dlv, which should be pretty familiar.

function get(obj: any, path: string | ArrayLike<string | number>): any

Get a property using either a JSON Pointer string, or an array of already-unescaped accessor tokens.

import { get } from 'pointer-props'
const obj = { foo: { bar: 3 } }
get(obj, '/foo/bar') // => 3
get(obj, [ 'foo', 'bar' ]) // => 3

function set<T extends object, V>(obj: T, path: string | ArrayLike<string | number>, value: V): T

Set a property using either a JSON Pointer string, or an array of already-unescaped accessor tokens.

For convenience, the modified object is also returned.

import { set } from 'pointer-props'
const obj = {}
set(obj, '/foo/bar', 3)
console.log(obj.foo.bar) // => 3
set(obj, [ 'foo', 'bar' ], 4)
console.log(obj.foo.bar) // => 4

function del<T extends object>(obj: T, path: string | ArrayLike<string | number>): T

Remove a property using either a JSON Pointer string, or an array of already-unescaped accessor tokens.

For convenience, the modified object is also returned.

import { set } from 'pointer-props'
const obj = {}
set(obj, '/foo/bar', 3)
console.log(obj.foo.bar) // => 3
set(obj, [ 'foo', 'bar' ], 4)
console.log(obj.foo.bar) // => 4

function toTokens(path: string): Array<string>

Convert a JSON Pointer string to a list of unescaped accessor tokens.

import { toTokens } from 'pointer-props'
toTokens('/a~1b/c~0d') // => [ "a/b", "c~d" ]

function toPointer(list: ArrayLike<string | number>): string

Convert a list of unescaped accessor tokens into a JSON Pointer string.

import { toPointer } from 'pointer-props'
toPointer([ 'a/b', 'c~d' ]) // => "/a~1b/c~0d"

export function resolve<T extends object>(obj: T, path: string | ArrayLike<string | number>): ArrayLike<string | number>

Given a JSON Pointer string and an object potentially containing JSON References (e.g. $ref), resolve all references and return the final path.

import { resolve } from 'pointer-props'
const obj = {
	foo: { $ref: '#/bar' },
	bar: { $ref: '#/fizz' },
	fizz: { $ref: '#/buzz' },
	buzz: 3
}
resolve('#/foo') // => [ 'buzz' ]

License

Published and released under the Very Open License.

If you need a commercial license, contact me here.