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 🙏

© 2025 – Pkg Stats / Ryan Hefner

filter-lang

v1.0.3

Published

A no dependency library for generating arbitrary filter functions.

Readme

filter-lang

A lightweight parser and compiler for evaluating filter expressions against JavaScript objects.
Define conditions like 'age > 30 AND name != "Bob"' and compile them into executable functions. Useful for when your PM says to add arbitrarily complex filters to an app.


Installation

npm install filter-lang


Usage

import generateFilter from "filter-lang";

const data = [
  { name: "Alice", age: 30, contact: { email: "[email protected]" } },
  { name: "Bob", age: 40, contact: { email: "[email protected]" } },
  { name: "Cindy", age: 25, contact: { email: "[email protected]" } },
];

// Build a filter function from a string expression
const filterFn = generateFilter('age > 30 OR "yahoo" IN contact.email');

// Apply it to your data
const result = data.filter(filterFn);

console.log(result);
// [
//   { name: "Bob", age: 40, contact: { email: "[email protected]" } },
//   { name: "Cindy", age: 25, contact: { email: "[email protected]" } }
// ]

Syntax

Expressions are written as strings. They are parsed into an AST, then compiled into JavaScript functions.

Operators

  • Logic
    • AND, OR, NOT(expr)
  • Comparisons
    • =, !=, >, <, >=, <=
    • IN (checks if left value is contained in right string/array)
  • Special
    • HAS field — true if object has the property and it is not null

Values

  • Numbers: 42
  • Strings: "Alice"
  • Variables: property paths using dot notation, e.g. contact.email

Grouping

  • Use parentheses (...) to group expressions.

Examples

// Age greater than 30
const f1 = generateFilter('age > 30');

// Name is exactly "Bob"
const f2 = generateFilter('name = "Bob"');

// Name is not Bob
const f3 = generateFilter('name != "Bob"');

// Email contains "yahoo"
const f4 = generateFilter('"yahoo" IN contact.email');

// Object has property "phone"
const f5 = generateFilter('HAS phone');

// dateOfBirth is empty
const f6 = generateFilter('NOT(HAS dateOfBirth)');

API

generateFilter(expression: string) => (obj: object) => boolean

Parses and compiles a filter expression string into a function that tests an object.


License

MIT