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 🙏

© 2026 – Pkg Stats / Ryan Hefner

noqq

v0.1.141

Published

No query query data chat for fraction of normal cost

Readme

NOQQ (No Query Query) v0.1.141 - UNSTABLE VERSION

npm last commit

Only supports single .csv for now. 70% Success rate (To ensure highest accuracy, always write clear queries, use exact column names, and keep your data format consistent)

Intelligent queries at fractions of a penny instead of dollars.

NOQQ is a lightweight, intelligent data querying system designed to handle massive CSV datasets quickly and affordably. It leverages the power of OpenAI to dynamically create efficient, precise data filters and retrieval functions directly from natural language prompts.

Cost Comparison

Imagine you have a database file with 12 columns and 100,000 entities, requiring the processing of approximately 2.5 million input tokens per request.

This is the actual cost comparison as of March 2025:

| Model | Cost (USD) | |--------------|------------| | GPT-4.5 | $190 | | GPT-4o | $6.25 | | GPT-4o-mini | $0.37 | | GPT-o1 | $37 | | GPT-o1-mini | $2.75 | | NOQQ | $0.001 |

NOQQ provides an ultra-low-cost alternative to traditional LLM-powered queries, making large-scale data processing significantly more affordable.

Installation

Install via npm:

npm install noqq

Usage

Initialize NOQQ and query your CSV file effortlessly:

import NOQQ from 'noqq';

const noqq = new NOQQ({
    openaiApiKey: 'YOUR_OPENAI_API_KEY',
});

await noqq.initFile('./customerDB.csv');
const result = await noqq.query('return all users from Eritrea');

console.log(result);

Features

  • No Query-Query: Query your datasets using plain language.
  • Cost-Effective: Queries cost fractions of a cent instead of dollars.
  • High Efficiency: Processes large datasets rapidly with streaming data support.
  • Flexible Integration: Simple initialization and intuitive API.

Current Limitations

  • Only CSV format supported in version 0.1.
  • Upcoming versions will support more file formats and data sources.

Usage Example

Prompt:

return all users from Eritrea

This intelligently returns only relevant data rows matching your request, irrespective of dataset size.

Roadmap

  • Extend support beyond CSV (JSON, databases, etc.)
  • Enhanced performance optimizations
  • Improved error handling and validation

Version: 0.1

© 2024 NOQQ - Intelligent data queries simplified and made affordable.