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

json-remote-search

v0.9.4

Published

Downloads remote json, keeps cache and provides searching api for it

Downloads

31

Readme

json-remote-search

Build Status

Downloads remote json, keeps cache and provides searching api for it

Install via npm

$ npm install json-remote-search

API

var options = {
  url: 'http://www.json-generator.com/api/json/get/bVfgyCTYLC',
  expires: 3000 //3000 milliseconds
};
var jsonRemoteSearch = require('json-remote-search')(options);

jsonRemoteSearch('[*]')
   .then(function(result){
      console.log(result) //=> {value: 'Matt', parents: [...], key: 0} ... etc
   })
   .catch(function(err){
      throw err; 
   });

jsonRemoteSearch(query)

Specify a query and what to query. Returns an object that describes the result of the query.


var options = {
  url: 'http://www.json-generator.com/api/json/get/cqioHcrnKG?indent=2',
  expires: 3000 //3000 milliseconds
};
var jsonRemoteSearch = require('json-remote-search')(options);

/*
{
  people: [
    {name: 'Matt', country: 'NZ'},
    {name: 'Pete', country: 'AU'},
    {name: 'Mikey', country: 'NZ'}
  ]
}
*/

jsonRemoteSearch('people[country=NZ].name')
   .then(function(result){
      console.log(result) //=> {value: 'Matt', parents: [...], key: 0} ... etc
   })
   .catch(function(err){
      throw err; 
   });

Options:

  • url : url to download json file from.
  • expires or context (optional): mention expiry time for downloading file again (till the point it stays in memory).
  • data (optional): if you dont want to use url, you can just use data which is already existing.

Queries

Queries are strings that describe an object or value to pluck out, or manipulate from the context object. The syntax is a little bit CSS, a little bit JS, but pretty powerful.

Accessing properties (dot notation)

person.name

Array accessors

people[0]

Array pluck

people.name => return all the names of people

Get all values of a lookup

lookup[*]

Array filter

By default only the first matching item will be returned:

people[name=Matt]

But if you add an asterisk (*), all matching items will be returned:

people[*country=NZ]

You can use comparative operators:

people[*rating>=3]

Or use boolean logic:

people[* rating >= 3 & starred = true]

If options.enableRegexp is enabled, you can use the ~ operator to match RegExp:

people[*name~/^R/i]

You can also negate any of the above examples by adding a ! before the = or ~:

people[*country!=NZ]

Or syntax

person.greetingName|person.name

Deep queries

Search through multiple levels of Objects/Arrays using [**]:


var options = {
  url: 'http://www.json-generator.com/api/json/get/cohRDAEugi?indent=2'
};
var jsonRemoteSearch = require('json-remote-search')(options);

/*{
  grouped_people: {
    'friends': [
      {name: 'Steve', country: 'NZ'},
      {name: 'Jane', country: 'US'},
      {name: 'Mike', country: 'AU'},
      {name: 'Mary', country: 'NZ'}
    ],
    'enemies': [
      {name: 'Evil Steve', country: 'AU'},
      {name: 'Betty', country: 'NZ'}
    ]
  }
} */

var result = jsonRemoteSearch('grouped_people[**][*country=NZ]')
                .then(function(result){
                  console.log(result.value)
               })
               .catch(function(err){
                  throw err; 
               });

The result will be:

[
  {name: 'Steve', country: 'NZ'},
  {name: 'Mary', country: 'NZ'},
  {name: 'Betty', country: 'NZ'}
]

More Documentation Coming soon

License

Apache 2.0