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

@sprs/ts-hkt

v0.0.2

Published

Higher-kinded types for TypeScript

Downloads

4

Readme

Introduction

This library implements a form of higher-kindedness in TypeScript.

Disclaimer: Unless you already implement a more complex form of higher-kindedness, you are almost certain to inflate the complexity of your codebase by using this utility. Approach the question of adoption with caution and a healthy dose of skepticism.

Usage

To use this library, import tc (shorter alias for TypeConstructor) from @sprs/ts-hkt and extend it, overriding at least the result property.

tc acts like a type-system-level function, with parameters and a return type. tc itself accepts two type parameters, one to constrain the input types (must be a tuple), and one to constrain the output type. (tc <InputTypeConstraint, OutputTypeConstraint>)

Overriding the result property on an interface extending from tc acts as the "body" of the type function.

Example type constructor, Concat:

import { tc } from '@sprs/ts-hkt';

interface Concat extends tc <[string, string], string> {
  result: `${this[0]}${this[1]}`
}

If you were to make up an analagous runtime function that is more-or-less equivalent to the above, it might look like this:

function Concat (str1: string, str2: string): string {
  return `${str1}${str2}`;
}

Apply type parameters with apply to obtain a new type:

import { apply } from '@sprs/ts-hkt';

// interface Concat ...

type GreetSusan = apply <Concat, ['Hola, ', 'Susan'];
// -> type GreetSusan: 'Hola, Susan';

Type constructors created with tc are automatically curried. Partially apply type parameters to obtain a new type function:

import { partial, apply } from '@sprs/ts-hkt';

// interface Concat ...

type Greet = partial <Concat, ['Hello, ']>;
type GreetJohn = apply <Greet, ['John']>;
// -> type GreetJohn: 'Hello, John';

Use call for isomorphic partial and full type function application:

import { call } from '@sprs/ts-hkt';

// interface Concat ...

type Greet = call <Concat, ['Hello, ']>;
type GreetJohn = call <Greet, ['John']>;
// -> type GreetJohn: 'Hello, John';

Implementation

@sprs/ts-hkt simulates type functions using existing TS language features. The core idea is to express a type which depends on other types through a mechanism other than type parameters.

The specific language features used to simulate higher-kinded types are:

  1. this polymorphism in interfaces - the concrete type of this doesn't resolve fully until a property is accessed
  2. Intersection collapse of unknown & T to T

A minimal implementation of higher-kinded types stripped of the additional constraint and partial application features this library provides might look something like the following:

// All type functions extend from this interface
interface TypeConstructor {
  params: unknown;
  result: unknown;
}

type apply <Fn extends TypeConstructor, Params> =
  (Fn & { params: Params })['result'];

// Specific instance of a type function
interface PairOf extends TypeConstructor {
  result: [this['params'], this['params']];
}

type PairOfNumber = apply <PairOf, number>;
// => [number, number]