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 🙏

© 2026 – Pkg Stats / Ryan Hefner

valky

v0.0.1

Published

A simple utility to deep search an object and return a key of a value.

Readme

Valky

A simple utility to deep search an object and return a key of a value.

Build Status

Quickstart

Install the module from npm as shown

npm install valky

Define an object as shown

var myObject = {
    name: 'Application',
    port: 9001,
    database: {
        host: 'localhost',
        ports: {
            one: 27012,
            two: 27013
        },
        user: 'user',
        pass: 'pass'
    }
};

To get the key of a specific value, use the valky lib as shown

var valky = require('valky');

var appKey = valky(myObject, 'Application');
var dbUserKey = valky(myObject, 'user');
var dbPassKey = valky(myObject, 'pass');

var dbHostOne = valky(myObject, 27012);
var dbHostTwo = valky(myObject, 27013);

console.log(appKey);
console.log(dbUserKey);
console.log(dbPassKey);

// Logs out name
// Logs out database.user
// Logs out database.pass

console.log(dbHostOne);
console.log(dbHostTwo);
// Logs out database.ports.one
// Logs out database.ports.two

Valky also works with custom delimiters, specify it as a third parameter.

var valky = require('valky');

var dbHostOne = valky(myObject, 27012, '_');
var dbHostTwo = valky(myObject, 27013, '_');

console.log(dbHostOne);
console.log(dbHostTwo);
// Logs out database_ports_one
// Logs out database_ports_two

NOTE: If the value of two keys are same, the key-val pair first detected takes precedence.

Developers

Clone the repo using git clone https://github.com/whoisandie/valky.git. Valky tests are written in mocha. To run the tests, install the dependencies and run the npm test` command as shown.

Once you have cloned, cd into the directory and run the below commands.

npm install
npm test

Contribution

Want to make a contribution ? Cool! Fork the repo, tweak, add your changes, submit a pull request :) And yes contributions will be appreciated !

License

The MIT License (MIT)

Copyright (c) 2014 Bhargav Anand

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.