Socket
Book a DemoInstallSign in
Socket

narrow-types

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

narrow-types

A collection of branded Typescript types, using [zod](https://github.com/colinhacks/zod/) as the underlying validation library.

latest
Source
npmnpm
Version
1.4.6
Version published
Weekly downloads
4
33.33%
Maintainers
0
Weekly downloads
 
Created
Source

narrow-types

A collection of branded Typescript types, using zod as the underlying validation library.

import { emailString, EmailString } from "narrow-types";

// The address parameter must be a validated email address
function sendEmail(address: EmailString, subject: string) {
  // ...
}

// This function accepts any string
function logString(message: string) {
  // ...
}

// myEmail is an EmailString
const myEmail = emailString.parse("john@doe.com");

sendEmail(myEmail, "Hello"); // Works
logString(myEmail); // Works as well. EmailStrings are strings as far as JS is concerned.

sendEmail("john@doe", "Hello"); // Error: address is not an EmailString

Installation

npm install narrow-types

Rationale

So you are using Zod to make an air tight boundary between the outside and your type safe core. Say you have an endpoint that looks something like this:

const signupBody = z.object({
  email: z.string().email(),
  password: z.string().min(8),
});

autoRoutes.post("/signup", async (ctx) => {
  const body = signupBody.parse(ctx.req.body);

  ctx.state.db.accounts.insert({
    site: ctx.state.site,
    email: body.email,
    password: await hash(body.password),
  });

  ctx.body = { success: true };
});

Great! You have a nice, clean endpoint. You are certain that the email inserted is a valid email address and that the password is at least 8 characters. But what if you would like to extract a function for signing people up so it could be used elsewhere? You could do something like this:

async function signup(
  db: Database,
  site: string,
  email: string,
  password: string
) {
  db.accounts.insert({
    site,
    email,
    password: await hash(password),
  });
}

and call that. But now you are no longer sure that the provided email is valid. You could move the Zod validation step into the function, but if you want to keep it in the endpoint as well for some reason, you will now be validating twice at runtime which is a performance cost, and not very pretty either.

Instead, you can use the EmailString type from this library:

import { EmailString } from "narrow-types";

async function signup(
  db: Database,
  site: string,
  email: EmailString,
  password: string
) {
  db.accounts.insert({
    site,
    email,
    password: await hash(password),
  });
}

Now, the type of email is EmailString which is a string that has been validated to be a valid email address. To use it, we modify our Zod schema and endpoint to look like this:

import { emailString } from "narrow-types";

const signupBody = z.object({
  email: emailString,
  password: z.string().min(8),
});

authRoutes.post("/signup", async (ctx) => {
  const body = signupBody.parse(ctx.req.body);

  signup(ctx.state.db, ctx.state.site, body.email, body.password);

  ctx.body = { success: true };
});

The EmailString type is just a branded string, incurring no runtime cost. It is just a way to tell Typescript that the string is a valid email address. This allows us to use the same type in both the endpoint and the function, and we can be sure that the email address is valid in both places. Any function that expects a plain string will accept an EmailString as well, but not the other way around.

This library contains a number of types for common use cases, all compatible with Zod.

Types

Simple Number types

  • Integer
  • Int2
  • Int4
  • Int8
  • PositiveNumber
  • NegativeNumber
  • NonPositiveNumber
  • NonNegativeNumber
  • FiniteNumber
  • SafeNumber

Simple String types

  • NonEmptyString

ID types

  • UUIDString
  • CUIDString
  • CUID2String
  • ULIDString

Network types

  • EmailString
  • URLString
  • IPString
  • IPV4String
  • IPV6String
  • MACAddressString
  • JwtString

CSS types

  • HexColorString
  • HexColorWithAlphaString

Misc types

  • EmojiString
  • DateTimeString
  • JSONString

FAQs

Package last updated on 13 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts