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

@llmfuncs/funcs

v0.0.2

Published

An LLM-based data engineering library that provides a set of functions to manipulate and transform data using large language models.

Readme

LLMFuncs – Lodash meets LLMs 🤖✨

⚠️ Warning: work in progress!

Describe Data Operations in English, Execute with Confidence.

NPM Version License: MIT

Tired of writing boilerplate JavaScript/TypeScript for common array and object manipulations? Wish you could just describe what you want to do? LLMFuncs bridges the gap, allowing you to use natural language instructions, powered by Large Language Models (LLMs), to perform data operations like filtering, safely and efficiently.

What is this?

  • Natural Language Interface: Describe complex operations like "active users with more than 100 points" in plain English.
  • Data Filtering: Supports filtering arrays based on natural language predicates.
  • LLM Agnostic: Bring your own LLM! Supports multiple providers via the simple Provider interface. Only Gemini is currently supported out-of-the-box during this proof-of-concept alpha stage.
  • Configurable: Control batching, parallelism, LLM parameters (temperature, model), and retry logic.

Installation

npm install @llmfuncs/funcs

Quick Start

import { filter, GeminiProvider, llmfuncsConfig } from '@llmfuncs/funcs';

// 1. Configure the LLM Provider globally
llmfuncsConfig({
  provider: new GeminiProvider(process.env.GEMINI_API_KEY)
});

// 2. Use the natural language functions!
const items = [
  { name: 'Apple', category: 'Fruit', price: 1.2 },
  { name: 'Banana', category: 'Fruit', price: 0.5 },
  { name: 'Laptop', category: 'Electronics', price: 1200 },
  { name: 'Orange', category: 'Fruit', price: 0.8 },
];

// Let the LLM generate the filter logic based on the description
const fruits = await filter(
  items,
  "items that belong to the 'Fruit' category"
);

console.log('Filtered Fruits:', fruits);
// Expected output (approx):
// [
//   { name: 'Apple', category: 'Fruit', price: 1.2 },
//   { name: 'Banana', category: 'Fruit', price: 0.5 },
//   { name: 'Orange', category: 'Fruit', price: 0.8 }
// ]

const cheapItems = await filter(
  items,
  "products costing less than $1.00"
);
console.log('Cheap Items:', cheapItems);
// Expected output (approx):
// [
//   { name: 'Banana', category: 'Fruit', price: 0.5 },
//   { name: 'Orange', category: 'Fruit', price: 0.8 }
// ]

// Find the first expensive item
const expensiveItem = await find(
  items,
  "first item that costs more than $1000"
);
console.log('First Expensive Item:', expensiveItem);
// Expected output:
// { name: 'Laptop', category: 'Electronics', price: 1200 }

License

llmfuncs is released under the MIT License.