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

gkeypath

v0.14.0

Published

[![Build Status](https://secure.travis-ci.org/goliatone/gkeypath.png)](http://travis-ci.org/goliatone/gkeypath)

Downloads

55

Readme

KeyPath

Build Status

Helper library to get/set keypaths on any object.

Documentation

KeyPath is defined as a requirejs module.

It can be imported as a npm package to be used in Node.js applications:

$ npm i gkeypath

API

  • KeyPath.get: Get a value in target at given keypath
  • KeyPath.set: Set a value in target at given keypath
  • KeyPath.del: Delete a value in target at given keypath
  • KeyPath.has: Check if target has a property at given keypath.
  • KeyPath.oneOf: Get a value in target at array of keypaths
  • KeyPath.ifNotSet: If no property at keypath then set. Return value at keypath
  • KeyPath.assert: If target does not have keypath call onError
  • KeyPath.onError: Developer should override with custom assertion handler.

Examples

let foo = { bar: { baz: 'fiz',  buzs: ['fizbuz']} };

console.log(KeyPath.get(foo, 'bar.baz')); //fiz
console.log(foo.path.get('bar.bar')); //undefined
console.log(foo.path.get('bar.baz.buzs[0]')); //fizbuz
console.log(foo.path.get('bar.bar', 'fuz')); //fuz

Wrapping

You can wrap your object to get a get and set functions to access values.

The wrap function has different signatures.

let foo = { bar: { baz: 'fiz',  buzs: ['fizbuz']} };

KeyPath.wrap(foo, '$path');

console.log(foo.$path.get('bar.baz')); //fiz
console.log(foo.$path.get('bar.bar')); //undefined
console.log(foo.$path.get('bar.baz.buzs[0]')); //fizbuz
console.log(foo.$path.get('bar.bar', 'fuz')); //fuz
let foo = { bar: { baz: 'fiz' } };

KeyPath.wrap(foo, (target, wrapper) => {
    ...
});
Proxy

The wrapped object will be wrapped in an ES6 Proxy object, in which case you can access properties using dot notation instead of having to use the get/set functions.

let config = { bar: { baz: 'fiz' } };

config = KeyPath.wrap(config);

console.log(config.bar.baz) //fiz

Getting Started

Download the production version or the development version.

Development

npm install && bower install

If you need to sudo the npm command, you can try to:

sudo chown $(whoami) ~/.npm
sudo chown $(whoami) /usr/local/share/npm/bin
sudo chown -R $(whoami) /usr/local/lib/node_modules

If you bump versions, remember to update:

  • package.json
  • bower.json
  • component.json
  • etc.

Bower

Bower is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat.

To register gkeypath in the bower registry: bower register gkeypath git://github.com/goliatone/gkeypath.git

Then, make sure to tag your module:

git tag -a v0.1.0 -m "Initial release."

And push it:

git push --tags

Travis

In order to enable Travis for this specific project, you need to do so on your Travi's profile. Look for the entry goliatone/gkeypath, activate, and sync.

Release History

(Nothing yet)