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

js-nested-pick

v1.1.3

Published

Creates an object composed of the picked object properties from a nested object using a dot path, select specific fields based conditions with filter arrays with MongoDB queries

Downloads

71

Readme

js-nested-pick

Creates an object composed of the picked object properties from a nested object using a dot path, select specific fields based conditions with filter arrays with MongoDB queries

Can be used in js/ts projects in node/browser.

Support select number of fields from nested object with dot and object with query:

How to use:

const pick = require('js-nested-pick');

const data = {
	name: 'Dan',
	age: 30,
}

const values = pick(data, ['name']) // {name: 'Dan'}
  • Simple select ['name', 'age'] Select name and age from object

  • Deep select with dot ['user.firstname'] Select user.name from inner object

  • Ommit fileds ['-password'] Select all fields except the password

  • Deep ommit fileds with dot ['-user.address'] Select all fields except the user address

  • Deep select/ ommit using object with path ['*', {path: 'user', select: ['-paasword']}] Select all fields, but in the user object, remove the password field

  • Select field in root object base of query on the data - using sift (read sift docs to see the options) [{when: {isPublic: true}, then: ['*'], otherwise: ['title']}] When the data.isPublic equal to true then in the data.posts select all fields, otherwise select only the title (post can be object or array)

  • Select field in inner object or array base of query on the data - using sift (read sift docs to see the options) [{path: 'post', when: {isPublic: true}, then: ['*'], otherwise: ['title']}] When the data.isPublic equal to true then in the data.posts select all fields, otherwise select only the title (post can be object or array)

  • Select field in inner object or array base of query on the item data - using sift (read sift docs to see the options) [{path: 'posts', where: {isPublic: true}, then: ['*'], otherwise: ['title']}] When the post.isPublic equal to true then select all post fields, otherwise select only the title (post can be object or array)

In-browser Playgrounds

Edit frosty-bash-sgj4j

Dependencies:

  1. lodash/get
  2. lodash/set
  3. lodash/omit
  4. sift

Test with jest enter image description here