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

@andrew_l/search-query-language

v0.3.3

Published

Converts human-readable query strings into structured representations.

Downloads

160

Readme

Search Query Language

npm version license

Search Query Language is a lightweight utility that converts human-readable query strings into structured representations. It supports parsing expressions into an abstract syntax tree (AST) and transforming them into queries.

Documentation

✨ Features

  • Expression Parsing: Convert query strings into an AST for structured processing.
  • MongoDB Query Conversion: Transform expressions into MongoDB-compatible query objects.
  • Flexible Syntax Support: Supports comparison operators like =, !=, >, <, >=, <=.

🔍 Search Syntax

The following table lists the syntax that you can use to construct a query.

| Syntax | Usage | Description | Examples | | ------ | ------------------------------------------- | -------------------------------------------- | ----------------------------------------------- | | = | field="value" | Exact match | name="andrew" | | != | field!="value" | Not equal to | status!="active" | | < | field<value | Less than | amount<5000 | | <= | field<=value | Less than or equal to | amount<=10000 | | > | field>value | Greater than | created>1672531200 | | >= | field>=value | Greater than or equal to | created>=1672531200 | | AND | condition1 AND condition2 | Combine conditions (both must be true) | status="active" AND age>=18 | | OR | condition1 OR condition2 | Combine conditions (either can be true) | status="stop" OR age>40 | | () | (condition1 OR condition2) AND condition3 | Group conditions to control logic precedence | (status="active" OR status="stop") AND age>18 |

📌 Notes

  • The left operand must always be an identifier (e.g., a field name), while the right operand must always be a literal value (e.g., a string, number, or boolean).
  • Support comparison operators (<, <=, >, >=).
  • Use AND and OR to combine conditions.
  • Parentheses () help group conditions for better control over query logic.

🚀 Example: Minimal

import { parseToMongo } from '@andrew_l/search-query-language';

const clients = db.collection('clients');

// GET /clients?search="age>18"
app.get('/clients', async (req, res) => {
  const filter = parseToMongo(req.query.search);
  const items = await clients.find(filter).toArray();
  res.json(items);
});

🚀 Example: Usage MongoDB

import { parseToMongo } from '@andrew_l/search-query-language';

// GET /clients?search="active=true AND age>18"
app.get('/clients', async (req, res) => {
  const filter = parseToMongo(req.query.search, {
    transform: {
      _id: [MONGO_TRANSFORM.OBJECT_ID, MONGO_TRANSFORM.NOT_NULLABLE],
    },
  });

  const items = await db.collection('clients').find(filter).toArray();

  res.json(items);
});

🚀 Example: Usage Mongoose

import mongoose from 'mongoose';
import { parseToMongoose } from '@andrew_l/search-query-language';

const Client = mongoose.Model('Clients', new mongoose.Schema({
  email: String;
  active: Boolean;
}))

// GET /clients?search="email="[email protected]" AND active=true"
app.get('/clients', async (req, res) => {
  const filter = parseToMongoose(Client, req.query.search);
  const items = await Client.find(filter).lean();

  res.json(items);
});