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

gqlkit-ts

v0.1.0

Published

TypeScript GraphQL client runtime library — lightweight, typed, zero dependencies

Readme

gqlkit-ts — TypeScript GraphQL Client Runtime

The TypeScript runtime library that generated TypeScript SDKs depend on. Published as an npm package that provides the base classes and HTTP client used by all generated code.

Exports

import {
  GraphQLClient,    // HTTP client for executing GraphQL queries
  GraphQLErrors,    // Error class wrapping GraphQL error responses
  ClientOptions,    // Configuration type for GraphQLClient
  FieldSelection,   // Tracks selected fields for query building
  BaseBuilder,      // Base class for generated operation builders
} from "gqlkit-ts";

Components

GraphQLClient

Lightweight HTTP client for GraphQL endpoints.

const client = new GraphQLClient("http://localhost:8081/query", {
  authToken: "Bearer <token>",    // Sets Authorization header
  headers: { "X-Custom": "val" }, // Additional headers
  fetch: customFetch,             // Custom fetch implementation (optional)
});

// Typed query execution
const data = await client.execute<{ user: User }>(query, variables);

// Raw query (returns unknown)
const raw = await client.rawQuery(query, variables);

Error handling: Throws GraphQLErrors when the response contains a non-empty errors array. Each error includes message, locations, path, and extensions.

FieldSelection

Tracks which fields to include in a GraphQL selection set. Used internally by generated field selector classes.

const sel = new FieldSelection();
sel.addField("id");
sel.addField("name");

const nested = new FieldSelection();
nested.addField("id");
sel.addChild("user", nested);

sel.build(0);
// → "id\nname\nuser {\n  id\n}"

BaseBuilder

Base class that all generated query/mutation builders extend. Handles:

  • Argument storage with GraphQL type annotations
  • Field selection management
  • Query string assembly (operation name, variable declarations, argument passing, field selection)
  • Execution via the provided GraphQLClient
// Generated code extends BaseBuilder:
class TodosBuilder extends BaseBuilder {
  filter(v: TodoFilter) { this.setArg("filter", v, "TodoFilter"); return this; }
  select(fn: (f: TodoFields) => void) { fn(new TodoFields(this.getSelection())); return this; }
  async execute() { return this.executeRaw(); }
}

Build

npm install
npm run build    # Compiles to dist/

Package Structure

src/
  index.ts           Public API re-exports
  graphqlclient.ts   GraphQLClient, GraphQLErrors, ClientOptions
  builder.ts         FieldSelection, BaseBuilder
dist/                Compiled JS + type declarations

Configuration

  • Target: ES2020
  • Module: CommonJS
  • TypeScript: 5.4.0+
  • No runtime dependencies (uses native fetch)