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 🙏

© 2024 – Pkg Stats / Ryan Hefner

zod-route-schemas

v1.3.0

Published

[![CircleCI](https://circleci.com/gh/jcoreio/zod-route-schemas.svg?style=svg)](https://circleci.com/gh/jcoreio/zod-route-schemas) [![Coverage Status](https://codecov.io/gh/jcoreio/zod-route-schemas/branch/master/graph/badge.svg)](https://codecov.io/gh/jco

Downloads

25

Readme

zod-route-schemas

CircleCI Coverage Status semantic-release Commitizen friendly npm version

Utility for parsing URL routes with typesafe parameters

Intro

Many routing libraries like react-router allow you to define route patterns with parameters like /users/:userId, but they don't validate or parse the parameters, like if userId must be a number.

zod-route-schemas allows you to validate and parse the parameters according to a zod schema:

import z from 'zod'
import ZodRoute from 'zod-route-schemas'

const usersRoute = new ZodRoute(
  '/users/:userId',
  z.object({
    // ZodRoute type magic requires this schema to have a userId property!
    userId: z
      .string()
      .regex(/^\d+$/)
      .transform((s) => parseInt(s)),
  })
)

const params: { userId: number } = usersRoute.parse('/users/23') // type safe!

API

Patterns

A pattern should be a valid URL path (this is not strictly enforced at the moment). Any path segment (part delimited by /) that starts with : is a parameter. For example the path /org/:orgId/dashboards/:dashboardId has two parameters, orgId and dashboardId.

You can mark a path segment optional (whether it's a parameter or not) with a trailing ?. For example /settings/account?/password matches /settings/account/password or /settings/account, and /users/:userId matches /users or /users/dude with userId: 'dude'.

class ZodRoute

import ZodRoute from 'zod-route-schemas'
class ZodRoute<
  Pattern extends string,
  Schema extends SchemaForPattern<Pattern>,
  FormatSchema extends InvertSchema<Schema> = InvertSchema<Schema>
>

constructor(pattern, schema, [options])

constructor(pattern: Pattern, schema: Schema, options?: { formatSchema?: FormatSchema, partialFormatSchema?: PartialFormatSchema })

Creates a ZodRoute. The schema must accept an object as input with all parameters from pattern as string-valued properties.

schema is used to parse the parameters in .parse()/.safeParse().

formatSchema is optional, and is used to transform the output parameter values back to the raw string values in .format(). only accepts an object with string, number, boolean, null, or undefined values, and String()ifies them.

partialFormatSchema is optional, and is used to transform the output parameter values back to the raw string values in .partialFormat().

pattern: Pattern

The pattern for this route.

schema: Schema

The schema for parsing this route's parameters in .parse()/.safeParse()

formatSchema: FormatSchema

The schema for formatting this route's parameters in .format()/.partialFormat().

safeParse(path)

safeParse(path: string): z.SafeParseReturnType<z.input<Schema>, z.output<Schema>>

Parses the given path. If it matches the pattern, returns { success: true, data: z.output<Schema> }. Otherwise, returns { success: false, error: ZodError }

parse(path)

parse(path: string): z.output<Schema>

Parses the given path, returning the parsed parameters. If path doesn't match the pattern or schema, throws a ZodError.

format(params)

format(params: z.output<Schema>): BindParams<Pattern, z.output<Schema>

Creates a path from the given params. If formatSchema can't parse the params, throws an error. The return type can be computed exactly if the params are passed as const and have only primitive values.

partialFormat(params)

partialFormat<P extends Partial<z.output<Schema>>>(params: P): BindParams<Pattern, P>

Creates a path or pattern from the given params. If a parameter is omitted, the corresponding path segment (starting with :) will be preserved in the returned pattern.

extend(subpattern, subschema, [formatSubschema])

extend<
  Subpattern extends string,
  Subschema extends SchemaForPattern<Subpattern>,
  FormatSubschema extends InvertSchema<Subschema> = InvertSchema<Subschema>
>(
  subpattern: Subpattern,
  subschema: Subschema,
  formatSubschema: FormatSubschema = defaultFormatSchema as any
): ZodRoute<
  `${Pattern}/${Subpattern}`,
  z.ZodIntersection<Schema, Subschema>,
  z.ZodIntersection<FormatSchema, FormatSubschema>
>