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

filtr

v0.3.0

Published

Array filtering for node.js and the browser inspired by MongoDB.

Downloads

2,668

Readme

Filtr Build Status

Filter javascript arrays using a MongoDB style syntax and is available for node.js and the browser. It was originally written as an internal component for Seed, but it had no other dependancies and seemed fit for use in the browser.

Installation

Node.js

Filtr is available on npm.

npm install filtr

Browser

A browser build is available in the repository's dist folder. Download the package and include either the normal or minimized build in your HTML header.

<script src="filtr.js" type="text/javascript"></script>
<script src="filtr.min.js" type="text.javascript"></script>

The browser build is fully AMD and CommonJS compatible and should work on all browser.

Features

Filtr is still in early development so expect this list to grow.

Expansive Query Language
  • Comparators: $gt, $gte, $lt, $lte, $all, $exists, $mod, $eq, $ne, $in, $nin, $size
  • Traversables: $or, $nor, $and
Data Helpers
  • filtr.getPathValue returns the nested value in an object given a string path
  • filtr.comparators are available directly for quick value testing

Usage

var query = filtr({ $gt: 15, $lt: 25 })
  , results = query.test([ 5, 10, 17, 19, 25 ]);
// results == [ 17, 19 ];

Test options provide different output

Testing also supports a number of options passed in as the second argument.

  • spec: output modifer
    • subset: (default) return an array containing a subset of matched items
    • boolean: return an array of the original length with each item being a boolean when object passed or failed.
    • index: return an array of numbers matching the index of passed object in the original array
  • type: input modifier
    • set: (default) assert that the data provided is an array. test each item.
    • single: assert that the data provided is a single item. return boolean.

Using the spec output modifier is an easy way to handle post processing of result sets without having to match up a subset.

var query = filtr({ $gt: 15, $lt: 25 })
  , results = query.test([ 5, 10, 17, 19, 25 ], { spec: 'boolean' });
// results == [ false, false, true, true, false ];

Using paths for deep matching

Filtr also supports using paths for deep matching within a javascript object. Given the following items, and sample queries.

var dataComplex = [
    { a: { b: 100 }
    , c: 'testC'
    , d: 
      [ { e: 'world' } ] 
    }
  , { a: { b: 50 }
    , c: 'testC'
    , d: 
      [ { e: 'universe' }
      , { e: 'galaxy' } ]
    }
];

var query1 = filtr({ 'a.b': { $gt: 75, $lt: 125 } });
  , query2 = filtr({ 'a.b': { $gt: 25, $lt: 75 }, 'd[0].e': { $eq: 'universe' } });

var res1 = query1.test(dataComplex)  // result would have the first item
  , res2 = query1.test(dataComplex); // result would have the second item 

A helper is also available that returns the value in a nested object given a string path.

var hello = filtr.getPathValue('d[0].e', dataComplex[1]);
// hello == 'universe'

Where to Get Help

Please post issues to GitHub Issues.

Tests

Tests are written in the BDD styles for the Mocha test runner using the should assertion interface from Chai. Running tests is simple:

make test

A browser suite is also available at test/browser/index.js. The same test definitions are used in both contexts.

Contributing

Interested in contributing? Fork to get started. Contact @logicalparadox if you are interested in being regular contributor.

Contibutors

License

(The MIT License)

Copyright (c) 2011-2012 Jake Luer [email protected]

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.