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

@silvered/flatten-object-keys

v1.0.5

Published

Turn deeply nested object into any array of keys. This is useful if you need to write algorithms and transformation that are taxonomy independent.

Readme

flatten-object-keys

Turn deeply nested object into any array of keys. This is useful if you need to write algorithms and transformation that are taxonomy independent.

Install

npm install @silvered-nyc/flatten-object-keys

Import

import { flattenObjectKeys } from "@silvered-nyc/flatten-object-keys";

Simple example

import { flattenObjectKeys } from "@silvered-nyc/flatten-object-keys";

const object = {
    name: "robert",
    age: 10,
  };

const keys = flattenObjectKeys(object);
// keys -> ["name","age"]

Array example

import { flattenObjectKeys } from "@silvered-nyc/flatten-object-keys";

const object = ["swiming", "sailing", "surfing", "basketball"];

const keys = flattenObjectKeys(object);

// keys -> ["[0]","[1]","[2]","[3]"]

Nested example

import { flattenObjectKeys } from "@silvered-nyc/flatten-object-keys";
const object = {
    name: "robert",
    age: 10,
    dogs: {
      alive: {
        name: "skipper",
      },
      passed: {
        name: "carmel",
      },
    },
  };
const keys = flattenObjectKeys(object);
// keys -> ["name","age","dogs.alive.name","dogs.alive","dogs.passed.name","dogs.passed"]

Taxonomy Independent Algorithm Example: Bag of Words

import { flattenObjectKeys } from "@silvered-nyc/flatten-object-keys";
import _ from "lodash";

const object = {
    firstName: "robert",
    age: 28,
    social: {
      header: "Good mindsets help",
      posts: {
        recent: ["Good things on the way"],
      },
    },
    views: {
      life: [
        "The best is yet to be",
        "Do good and good will come to you.",
        "You can't go through life allowing pain to dictate how you behave",
        "Pain is inevitable, suffering is optional",
      ],
    },
  };

const keys = flattenObjectKeys(object);

  const bagOfWords = keys.reduce(
    (pv: { [key: string]: { count: number; sources: string[] } }, key) => {
      // lodash to get nested value
      const value = _.get(object, key);

      // is the value at the key a string
      if (_.isString(value)) {
        value
          .toLowerCase()
          .split(" ")
          // loop through words and build bag of words
          .forEach((e) => {
            // its allready initialized
            if (pv[e]) {
              pv[e] = {
                count: pv[e].count + 1,
                sources: [...pv[e].sources, key],
              };
            } else {
              pv[e] = { count: 1, sources: [key] };
            }
          });
      }
      return pv;
    },
    {}
  );
  
// bagOfWords -> {
//     robert: { count: 1, sources: ["firstName"] },
//     good: {
//       count: 4,
//       sources: [
//         "social.header",
//         "social.posts.recent[0]",
//         "views.life[1]",
//         "views.life[1]",
//       ],
//     },
//     mindsets: { count: 1, sources: ["social.header"] },
//     help: { count: 1, sources: ["social.header"] },
//     things: { count: 1, sources: ["social.posts.recent[0]"] },
//     on: { count: 1, sources: ["social.posts.recent[0]"] },
//     the: { count: 2, sources: ["social.posts.recent[0]", "views.life[0]"] },
//     way: { count: 1, sources: ["social.posts.recent[0]"] },
//     best: { count: 1, sources: ["views.life[0]"] },
//     is: {
//       count: 3,
//       sources: ["views.life[0]", "views.life[3]", "views.life[3]"],
//     },
//     yet: { count: 1, sources: ["views.life[0]"] },
//     to: {
//       count: 3,
//       sources: ["views.life[0]", "views.life[1]", "views.life[2]"],
//     },
//     be: { count: 1, sources: ["views.life[0]"] },
//     do: { count: 1, sources: ["views.life[1]"] },
//     and: { count: 1, sources: ["views.life[1]"] },
//     will: { count: 1, sources: ["views.life[1]"] },
//     come: { count: 1, sources: ["views.life[1]"] },
//     "you.": { count: 1, sources: ["views.life[1]"] },
//     you: { count: 2, sources: ["views.life[2]", "views.life[2]"] },
//     "can't": { count: 1, sources: ["views.life[2]"] },
//     go: { count: 1, sources: ["views.life[2]"] },
//     through: { count: 1, sources: ["views.life[2]"] },
//     life: { count: 1, sources: ["views.life[2]"] },
//     allowing: { count: 1, sources: ["views.life[2]"] },
//     pain: { count: 2, sources: ["views.life[2]", "views.life[3]"] },
//     dictate: { count: 1, sources: ["views.life[2]"] },
//     how: { count: 1, sources: ["views.life[2]"] },
//     behave: { count: 1, sources: ["views.life[2]"] },
//     "inevitable,": { count: 1, sources: ["views.life[3]"] },
//     suffering: { count: 1, sources: ["views.life[3]"] },
//     optional: { count: 1, sources: ["views.life[3]"] },
//   }