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

@chirag127/keyless-kilo

v0.3.0

Published

Keyless Kilo Gateway client. OpenAI-compatible chat over https://api.kilo.ai/api/gateway, no API key. Framework-agnostic (Node + browser via global fetch). ~200 req/hr per IP.

Readme

@chirag127/keyless-kilo

Keyless Kilo Gateway client. OpenAI-compatible chat, no API key — rate-limited by IP (~200 req/hr per IP).

Framework-agnostic, zero deps, works in Node + browser via global fetch.

Install

npm i @chirag127/keyless-kilo

Usage

import { chat, MODELS, DEFAULT_MODEL } from '@chirag127/keyless-kilo';

// string prompt — uses kilo-auto/free (auto-router)
const reply = await chat('Explain HMAC in one line.');

// specific model
await chat(
	[
		{ role: 'system', content: 'You are terse.' },
		{ role: 'user', content: 'hi' },
	],
	{ model: 'nvidia/nemotron-3-ultra-550b-a55b:free' },
);

API

chat(messages, opts?) => Promise<string>

Non-streaming. POSTs {model, messages} to {baseUrl}/chat/completionsno auth header.

| opt | default | note | |---|---|---| | model | 'kilo-auto/free' | auto-router; any id from MODELS | | baseUrl | https://api.kilo.ai/api/gateway | Kilo Gateway | | signal | — | AbortSignal | | ...rest | — | passed through (temperature, max_tokens, …) |

Models

Source: OmniRoute freeModelCatalog.data.tsprovider: "kilo-gateway", freeType: "recurring-uncapped", poolKey: "kilo-gateway-free". Sorted strongest-first.

| Model | Notes | |---|---| | kilo-auto/free | Default — auto-router, picks best available | | nvidia/nemotron-3-ultra-550b-a55b:free | Nemotron 3 Ultra 550B | | nvidia/nemotron-3-super-120b-a12b:free | Nemotron 3 Super 120B | | nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free | Nemotron 3 Nano Omni (reasoning) | | openrouter/auto-beta | OpenRouter auto (beta) | | openrouter/free | OpenRouter free models router | | poolside/laguna-m.1:free | Poolside Laguna M.1 | | poolside/laguna-xs-2.1:free | Poolside Laguna XS 2.1 | | cohere/north-mini-code:free | Cohere North Mini Code | | stepfun/step-3.7-flash:free | StepFun Step 3.7 Flash | | kwaipilot/kat-coder-pro-v2.5:free | KAT-Coder Pro V2.5 | | tencent/hy3:free | Tencent Hy3 | | nvidia/nemotron-3.5-content-safety:free | Nemotron Content Safety |

Notes

  • tos: "caution", trainsOnPrompts: true — avoid sensitive content.
  • ~200 req/hr per IP. No registration needed.
  • Throws on non-2xx with status and response body.

License

MIT