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

@shmax-org/typeparams

v1.0.0-rc.11

Published

Type-safe query string management and Zod schema generation.

Downloads

807

Readme

TypeParams Plugin

TypeParams Plugin is a TypeScript-first replacement for UrlSearchParams that allows you to apply type discipline to your query parameters such that reads and writes are safely protected. Furthermore, thanks to a Babel plugin, it will even coerce values for you automatically (ie, no need for parseInt).

Features

  • Automatically generates validation schemas based on TypeScript types.
  • Automatic type coercion (eg. string "3" -> integer 3)
  • Lightweight integration with minimal configuration.
  • Works seamlessly with URL query strings.

Installation

Install the plugin via your package manager:

yarn add @shmax/typeparams

Configuration

Create an (optional) typeparams.config.ts file in the root of your project:

export default {
  outputDir: ".generated-schemas", // defaults to .generated-schemas
};

Add the plugin to your Babel configuration (e.g., .babelrc or Babel section in package.json):

{
  "presets": ["@babel/preset-env", "@babel/preset-typescript"],
  "plugins": ["@shmax/typeparams/plugin"]
}

Run the tool to generate schemas (add --watch to have it automatically re-generate schemas after changes):

typeparams-gen --watch

Usage

1. Define Your Url schema as a TypeScript interface

type Filters = {
  filters: {
    toyline: number;
    tags: string[];
    metadata: {
      createdBy: string;
      active: boolean;
    };
  };
};

2. Feed it to an instance of the TypeParams Class as a generic argument

import { TypeParams } from "typeparams-plugin/shared/url-structured-search-params";

const params = new TypeParams<Filters>("?filters_toyline=3&filters_tags=toy1,toy2");

// or, for more safety:
const params = new TypeParams<Filters>({filters: { toyline: 3, tags: ['toy1', 'toy2']}});

// Safely get a value by its key path
const toyline = params.get("filters.toyline"); // OK
const brand = params.get("filters.brand"); // TS error! property "brand" doesn't exist on "filters"' 

3. Any values you retrieve are automatically coerced into the expected type

console.log(typeof toyline, toyline); // number 3

4. Set values with the same type discipline

// Set a value safely
params.set("filters.toyline", 3); // OK
params.set("filters.toyline", "3"); // TS error! Property "toyline" expects a number
params.set("filters.whammy", true); // TS error! Property "whammy" doesn't exist

5. Can also clear values

// Clear a key
params.clear("filters.tags");

// Serialize back to a string

navigate(`?${params}`) // ?filters_toyline=3&filters_tags=toy1,toy2

Example Output

When running your project, the plugin generates schema files in .generated-schemas (or the directory you specify in typeparams.config.ts). These schemas are automatically used during runtime for validation.


Requirements

  • Node.js 14+
  • TypeScript 4.0+

FAQ

Q: Do I need to configure anything else?
A: Nope! Just add the plugin to your Babel setup and define your types. The plugin handles the rest. Oh, and you may want to add the name of the generated schema directory to your .gitignore

Q: Does this work with non-TypeScript projects?
A: No, this plugin is designed specifically for TypeScript-first projects.


License

MIT