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

@vt-cpolcini/schema-types

v1.0.3

Published

Runtime and compile-type type schema definition and validation

Downloads

2

Readme

schema-types npm version Build Status

This library provides runtime and compile-type type schema definition and validation.

Features

  • Zero dependencies!
  • High level of developer ergonomics
  • Full modern TypeScript support
  • IntelliSense support

Installation

$ yarn add schema-types

Example

import * as T from 'schema-types'

// NOTE: documentation comments on the properties will appear in IntelliSense
const userType = T.object({
  /** The user's name */
  name: T.string(),

  /** The user's age */
  age: T.number(),

  /** Is the user account locked? */
  locked: T.optional(T.boolean()),
})

// Create a compile-time type alias for the schema type
type User = T.TypeOf<typeof userType>

// Use the compile-time type
export const user: User = {
  name: 'Alice',
  age: 32,
}

// Unknown data from user input, an API response, etc
const data: unknown = ...

// Return any validation issues
T.validate(userType, data) //=> [] (no issues)

T.validate(userType, {name: 'Alice', age: '32'}) //=> [{type: 'INVALID_TYPE', message: 'Invalid type, expected number, got string 32', path: '/age'}]

// Use a type-guard to refine the type
if (T.is(userType, data)) {
  // data is typed as `User`
}

// T.assert() throws an error if the data fails to validate
try {
  T.assert(userType, data)
  // data is typed as `User` (using TypeScript's `asserts` return type)
} catch (error) {
  console.log(error.issues) // logs the issues causing validation failure
}

// Generate TypeScript code for codegen
T.code(userType) //=> {"name": string; "age": number; "locked"?: (boolean | undefined)}

Type Compatibility

Types:

| TypeScript | schema-types | | ------------------- | ------------------ | | any | T.any() | | Array | T.array() | | bigint | T.bigint() | | boolean | T.boolean() | | Function | T.function() | | null | T.null() | | number | T.number() | | object | T.object() | | Record<string, T> | T.map() | | string | T.string() | | undefined | T.undefined() | | unknown | T.unknown() | | void | T.void() | | Literals | T.literal() | | Literal Union | T.literalUnion() | | Tuple | T.tuple() | | Union | T.union() | | Intersection | T.intersection() |

Modifiers:

| TypeScript | schema-types | | ---------- | -------------- | | Optional | T.optional() | | Read-only | T.readonly() |

Not implemented:

| TypeScript | schema-types | | ---------- | --------------- | | Enums | Not Implemented | | Generics | Not Implemented |

Helpers

T.TypeOf<T>

Takes a type schema and infers the TypeScript type for that schema.

T.assert(schema, value)

Checks to see if the value matches the supplied schema, and if not, throws an error.

T.is(schema, value)

Returns a boolean indicating if the value matches the supplied schema.

T.validate(schema, value)

Returns an array of validation issues, if any.

T.code(schema)

Returns a string containing the TypeScript code representation of the schema, useful for code generation.

Credits

This library was inspired by several other TypeScript runtime type libraries:

License

MIT license, see LICENSE