MCPcopy Index your code
hub / github.com/gvergnaud/hotscript

github.com/gvergnaud/hotscript @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
154 symbols 158 edges 54 files 3 documented · 2% updated 18mo ago★ 3,67125 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Higher-Order TypeScript (HOTScript)

A library of composable functions for the type level!

Transform your TypeScript types in any way you want using functions you already know.

image

Features

  • Type-level higher-order functions (Tuples.Map, Tuples.Filter, Objects.MapValues, etc).
  • Type-level pattern matching with Match.
  • Performant math operations (Numbers.Add, Numbers.Sub, Numbers.Mul, Numbers.Div, etc).
  • Custom "lambda" functions.

🚧 work in progress 🚧

Installation

You can find HotScript on npm:

npm install -D hotscript

HotScript is a work-in-progress library, so expect breaking changes in its API.

Examples

Transforming a list

Run this as a TypeScript Playground

import { Pipe, Tuples, Strings, Numbers } from "hotscript";

type res1 = Pipe<
  //  ^? 62
  [1, 2, 3, 4],
  [
    Tuples.Map<Numbers.Add<3>>,       // [4, 5, 6, 7]
    Tuples.Join<".">,                 // "4.5.6.7"
    Strings.Split<".">,               // ["4", "5", "6", "7"]
    Tuples.Map<Strings.Prepend<"1">>, // ["14", "15", "16", "17"]
    Tuples.Map<Strings.ToNumber>,     // [14, 15, 16, 17]
    Tuples.Sum                        // 62
  ]
>;

Defining a first-class function

Run this as a TypeScript Playground

import { Call, Fn, Tuples } from "hotscript";

// This is a type-level "lambda"!
interface Duplicate extends Fn {
  return: [this["arg0"], this["arg0"]];
}

type result1 = Call<Tuples.Map<Duplicate>, [1, 2, 3, 4]>;
//     ^? [[1, 1], [2, 2], [3, 3], [4, 4]]

type result2 = Call<Tuples.FlatMap<Duplicate>, [1, 2, 3, 4]>;
//     ^? [1, 1, 2, 2, 3, 3, 4, 4]

Transforming an object type

Run this as a TypeScript Playground

import { Pipe, Objects, Booleans } from "hotscript";

// Let's compose some functions to transform an object type:
type ToAPIPayload<T> = Pipe<
  T,
  [
    Objects.OmitBy<Booleans.Equals<symbol>>,
    Objects.Assign<{ metadata: { newUser: true } }>,
    Objects.SnakeCaseDeep,
    Objects.Assign<{ id: string }>
  ]
>;
type T = ToAPIPayload<{
  id: symbol;
  firstName: string;
  lastName: string;
}>;
// Returns:
type T = {
  id: string;
  metadata: { new_user: true };
  first_name: string;
  last_name: string;
};

Parsing a route path

Run this as a TypeScript Playground

https://user-images.githubusercontent.com/2315749/222081717-96217cd2-ac89-4e06-a942-17fbda717cd2.mp4

import { Pipe, Objects, Strings, ComposeLeft, Tuples, Match } from "hotscript";

type res5 = Pipe<
  //    ^? { id: string, index: number }
  "/users/<id:string>/posts/<index:number>",
  [
    Strings.Split<"/">,
    Tuples.Filter<Strings.StartsWith<"<">>,
    Tuples.Map<ComposeLeft<[Strings.Trim<"<" | ">">, Strings.Split<":">]>>,
    Tuples.ToUnion,
    Objects.FromEntries,
    Objects.MapValues<
      Match<[Match.With<"string", string>, Match.With<"number", number>]>
    >
  ]
>;

Make querySelector typesafe

Run this as a TypeScript Playground

import * as H from 'hotscript'

declare function querySelector<T extends string>(selector: T): ElementFromSelector<T> | null

interface Trim extends H.Fn {
    return:
    this["arg0"] extends `${infer Prev} ,${infer Next}` ?
    H.$<Trim, `${Prev},${Next}`> :
    this["arg0"] extends `${infer Prev}, ${infer Next}` ?
    H.$<Trim, `${Prev},${Next}`> :
    this["arg0"] extends `${infer Prev}:is(${infer El})${infer Rest}` ?
    H.$<Trim, `${Prev}${El}${Rest}`> :
    this["arg0"] extends `${infer Prev}:where(${infer El})${infer Rest}` ?
    H.$<Trim, `${Prev}${El}${Rest}`> :
    this["arg0"] extends `${infer El}(${string})${infer Rest}` ?
    H.$<Trim, `${El}${Rest}`> :
    this["arg0"] extends `${infer El}[${string}]${infer Rest}` ?
    H.$<Trim, `${El}${Rest}`> :
    this["arg0"]
}

type ElementFromSelector<T> = H.Pipe<T, [
    Trim,
    H.Strings.Split<' '>,
    H.Tuples.Last,
    H.Strings.Split<','>,
    H.Tuples.ToUnion,
    H.Strings.Split<":" | "[" | "." | "#">,
    H.Tuples.At<0>,
    H.Match<[
        H.Match.With<keyof HTMLElementTagNameMap, H.Objects.Get<H._, HTMLElementTagNameMap>>,
        H.Match.With<any, HTMLElement>
    ]>
]>

image

API

  • [x] Core
  • [x] Pipe<Input, Fn[]>: Pipes a type through several functions.
  • [x] PipeRight<Fn[], Input>: Pipe a type from right to left.
  • [x] Call<Fn, ...Arg>: Call a type level Fn function.
  • [x] Apply<Fn, Arg[]>: Apply several arguments to an Fn function.
  • [x] PartialApply<Fn, Arg[]>: Make an Fn partially applicable.
  • [x] Compose<Fn[]>: Compose Fn functions from right to left.
  • [x] ComposeLeft<Fn[]>: Compose Fn functions from left to right.
  • [x] args, arg0, arg1, arg2, arg3: Access piped parameters (Useful in combination with Objects.Create).
  • [x] _: Placeholder to partially apply any built-in functions, or functions created with PartialApply.
  • [x] Function
  • [x] ReturnType<FunctionType>: Extract the return type from a function type.
  • [x] Parameters<FunctionType>: Extract the parameters from a function type as a tuple.
  • [x] Parameter<N, FunctionType>: Extract the parameter at index N from a function type.
  • [x] MapReturnType<Fn, FunctionType>: Transform the return type of a function type using an Fn.
  • [x] MapParameters<Fn, FunctionType>: Transform the tuple of parameters of a function type using an Fn.
  • [x] Tuples
  • [x] Create<X> -> [X]: Create a unary tuple from a type.
  • [x] Partition<Fn, Tuple>: Using a predicate Fn, turn a list of types into two lists [Passing[], Rejected[]].
  • [x] IsEmpty<Tuple>: Check if a tuple is empty.
  • [x] Zip<...Tuple[]>: Zips several tuples together. For example. it would turn [[a,b,c], [1,2,3]] into [[a, 1], [b, 2], [c, 3]].
  • [x] ZipWith<Fn, ...Tuple[]>: Zip several tuples by calling a zipper Fn with one argument per input tuple.
  • [x] Sort<Tuple>: Sorts a tuple of number literals.
  • [x] Head<Tuple>: Returns the first element from a tuple type.
  • [x] Tail<Tuple>: Drops the first element from a tuple type.
  • [x] At<N, Tuple>: Returns the Nth element from a tuple.
  • [x] Last<Tuple>: Returns the last element from a tuple.
  • [x] FlatMap<Fn, Tuple>: Calls an Fn function returning a tuple on each element of the input tuple, and flattens all of the returned tuples into a single one.
  • [x] Find<Fn, Tuple>: Finds an element from a tuple using a predicate Fn.
  • [x] Drop<N, Tuple>: Drops the N first elements from a tuple.
  • [x] Take<N, Tuple>: Takes the N first elements from a tuple.
  • [x] TakeWhile<Fn, Tuple>: Take elements while the Fn predicate returns true.
  • [x] GroupBy<Fn, Tuple>: Transform a list into an object containing lists. The Fn function takes each element and returns the key it should be added to.
  • [x] Join<Str, Tuple>: Joins several strings together using the Str separator string.
  • [x] Map<Fn, Tuple>: Transforms each element in a tuple.
  • [x] Filter<Fn, Tuple>: Removes elements from a tuple if the Fn predicate function doesn't return true.
  • [x] Reduce<Fn, Init, Tuple>: Iterates over a tuple a reduce it to a single function using a reducer Fn.
  • [x] ReduceRight<Fn, Init, Tuple>: like Reduce, but starting from the end of the list.
  • [x] Reverse<Tuple>: Reverses the tuple.
  • [x] Every<Fn, Tuple>: Checks if all element passes the Fn predicate.
  • [x] Some<Fn, Tuple>: Checks if at least one element passes the Fn predicate.
  • [x] SplitAt<N, Tuple>: Split a tuple into a left and a right tuple using an index.
  • [x] ToUnion<Tuple>: Turns a tuple into a union of elements.
  • [x] ToIntersection<Tuple>: Turns a tuple into an intersection of elements.
  • [x] Prepend<X, Tuple>: Adds a type at the beginning of a tuple.
  • [x] Append<X, Tuple>: Adds a type at the end of a tuple.
  • [x] Concat<T1, T2>: Merges two tuples together.
  • [x] Min<Tuple>: Returns the minimum number in a list of number literal types.
  • [x] Max<Tuple>: Returns the maximum number in a list of number literal types.
  • [x] Sum<Tuple>: Add all numbers in a list of number literal types together.
  • [x] Object
  • [x] Readonly<Obj>: Makes all object keys readonly.
  • [x] Mutable<Obj>: Removes readonly from all object keys.
  • [x] Required<Obj>: Makes all keys required.
  • [x] Partial<Obj>: Makes all keys optional.
  • [x] ReadonlyDeep<Obj>: Recursively makes all object keys readonly.
  • [x] MutableDeep<Obj>: Recursively removes readonly from all object keys.
  • [x] RequiredDeep<Obj>: Recursively makes all keys required.
  • [x] PartialDeep<Obj>: Recursively makes all keys optional.
  • [x] Update<Path, Fn | V, Obj>: Immutably update an object's field under a certain path. Paths are dot-separated strings: a.b.c.
  • [x] Record<Key, Value>: Creates an object type with keys of type Key and values of type Value.
  • [x] Keys<Obj>: Extracts the keys from an object type Obj.
  • [x] Values<Obj>: Extracts the values from an object type Obj.
  • [x] AllPaths<Obj>: Extracts all possible paths of an object type Obj.
  • [x] Create<Pattern, X>: Creates an object of type Pattern with values of type X.
  • [x] Get<Path, Obj>: Gets the value at the specified path Path in the object Obj.
  • [x] FromEntries<[Key, Value]>: Creates an object from a union of key-value pairs.
  • [x] Entries<Obj>: Extracts the union of key-value pairs from an object type Obj.
  • [x] MapValues<Fn, Obj>: Transforms the values of an object type Obj using a mapper function Fn.
  • [x] MapKeys<Fn, Obj>: Transforms the keys of an object type Obj using a mapper function Fn.
  • [x] Assign<...Obj>: Merges multiple objects together.
  • [x] Pick<Key, Obj>: Picks specific keys Key from an object type Obj.
  • [x] PickBy<Fn, Obj>: Picks keys from an object type Obj based on a predicate function Fn.
  • [x] Omit<Key, Obj>: Omits specific keys Key from an object type Obj.
  • [x] OmitBy<Fn, Obj>: Omits keys from an object type Obj based on a predicate function Fn.
  • [x] CamelCase<Obj>: Converts the keys of an object type Obj to camelCase.
  • [x] CamelCaseDeep<Obj>: Recursively converts the keys of an object type Obj to camelCase.
  • [x] SnakeCase<Obj>: Converts the keys of an object type Obj to snake_case.
  • [x] SnakeCaseDeep<Obj>: Recursively converts the keys of an object type Obj to snake_

Extension points exported contracts — how you extend this code

PadWithUnknown (Interface)
* Make sure all lists of arguments have the same length by * adding unknown arguments at the end of the shorter ones.
test/real-world/reselect.test.ts
CreateFn (Interface)
* Create an object from parameters * @description This function is used to make an object from parameters * And al
src/internals/objects/Objects.ts
ToPhrase (Interface)
(no doc)
test/tuples.test.ts
ToTuple (Interface)
(no doc)
test/unions.test.ts
GetUnknownPadding (Interface)
* Returns a list of `unknown` to pad the argsList * to make them all have the same length. * @example * ```ts
test/real-world/reselect.test.ts
LengthFn (Interface)
(no doc)
src/internals/strings/Strings.ts
IsNumber (Interface)
(no doc)
test/tuples.test.ts
ApplyArg (Interface)
(no doc)
test/real-world/reselect.test.ts

Core symbols most depended-on inside this repo

HomepageHeader
called by 0
docusaurus/src/pages/index.tsx
Home
called by 0
docusaurus/src/pages/index.tsx

Shape

Interface 152
Function 2

Languages

TypeScript100%

Modules by API surface

src/internals/tuples/Tuples.ts38 symbols
src/internals/objects/Objects.ts31 symbols
src/internals/strings/Strings.ts26 symbols
src/internals/numbers/Numbers.ts17 symbols
src/internals/unions/Unions.ts9 symbols
src/internals/core/Core.ts8 symbols
test/tuples.test.ts6 symbols
src/internals/booleans/Booleans.ts6 symbols
src/internals/functions/Functions.ts5 symbols
test/real-world/reselect.test.ts3 symbols
docusaurus/src/pages/index.tsx2 symbols
test/unions.test.ts1 symbols

Dependencies from manifests, versioned

@docusaurus/core2.3.1 · 1×
@docusaurus/module-type-aliases2.3.1 · 1×
@docusaurus/preset-classic2.3.1 · 1×
@mdx-js/react1.6.22 · 1×
@types/jest29.4.0 · 1×
clsx1.2.1 · 1×
jest29.4.2 · 1×
prettier2.8.4 · 1×
react17.0.2 · 1×
react-dom17.0.2 · 1×

For agents

$ claude mcp add hotscript \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact