MCPcopy
hub / github.com/millsp/ts-toolbelt

github.com/millsp/ts-toolbelt @v9.5.1 sqlite

repository ↗ · DeepWiki ↗ · release v9.5.1 ↗
30 symbols 46 edges 257 files 0 documented · 0%
README

banner

TypeScript's largest utility library

Language grade: JavaScript

📖 Documentation · 📣 Announcements · 🐞 Report Bug · 🍩 Request Feature · 🤔 Ask Questions

About

ts-toolbelt is the largest, and most tested type library available right now, featuring +200 utilities. Our type collection packages some of the most advanced mapped types, conditional types, and recursive types on the market.

Spend less time, build stronger. Benefit from a wide range of generic type functions to achieve better type safety.

We work just like lodash, or ramda, but applied to the type system. Our mission is to provide you with simple ways to compute, change, and create types. We abstract all those complex type checks away for you. We provide a simple, reusable, and standard API to help you get more done with TypeScript.

ts-toolbelt is a well organized package that can help you perform advanced operations on object types, union types, as well as function, and literal types. It is carefully and coherently designed for building robust, flexible, and type-safe software.

demo

We are a community and a knowledge base. Everyone is welcome to ask questions about types. If you are stuck or you misunderstand something, you came to the right place!. We welcome beginners and advanced developers to come take part. Welcome!

Getting Started

Prerequisites

npm install typescript@^4.1.0 --save-dev

For best results, add this to your tsconfig.json

{
  "compilerOptions": {
    // highly recommended (required by few utilities)
    "strictNullChecks": true,

    // this is optional, but enable whenever possible
    "strict": true,

    // this is the lowest supported standard library
    "lib": ["es2015"],
  }
}

Installation

npm install ts-toolbelt --save

Hello World

import {Object} from "ts-toolbelt"
// Check the docs below for more

// Merge two `object` together
type merge = Object.Merge<{name: string}, {age?: number}>
// {name: string, age?: number}

// Make a field of an `object` optional
type optional = Object.Optional<{id: number, name: string}, "name">
// {id: number, name?: string}

You can level-up, and re-code this library from scratch.

Documentation ⤢

Imports

The project is organized around TypeScript's main concepts:

Any Boolean Class Function Iteration List
Number Object Object.P String Union Test

TIP How to choose categories? Match your type with them.

There are many ways to import the types into your project:

  • Explicit ts import {Any, Boolean, Class, Function, Iteration, List, Number, Object, String, Union} from "ts-toolbelt"

  • Compact ts import {A, B, C, F, I, L, N, O, S, U} from "ts-toolbelt"

  • Portable ts import tb from "ts-toolbelt"

You can also import our non-official API from the community: ts import {Community} from "ts-toolbelt"

TIP The community API is for our community to publish useful types that don't see fit in the standard API.

Utility Index

ANY OBJECT LIST FUNCTION STRING UNION CLASS BOOLEAN NUMBER OBJECT.P ITERATION
Await Assign Append AutoPath At Diff Class And Absolute Merge Iteration
At AtLeast Assign Compose Join Exclude Instance Not Add Omit IterationOf
Cast Compulsory AtLeast Curry Length Filter Parameters Or Greater Pick Key
Compute CompulsoryKeys Compulsory Exact Replace Has Xor GreaterEq Readonly Next
Contains Diff CompulsoryKeys Function Split IntersectOf IsNegative Update Pos
Equals Either Concat Length Last IsPositive Record Prev
Extends Exclude Diff Narrow Merge IsZero
Key ExcludeKeys Drop NoInfer NonNullable Lower
Keys Filter Either Parameters Nullable LowerEq
KnownKeys FilterKeys Exclude Pipe Pop Negate
Is Has ExcludeKeys Promisify Replace Range
Promise HasPath Extract Return Select Sub
Try Includes Filter UnCurry Strict
Type Intersect FilterKeys ValidPath ListOf
x [IntersectKeys](https://millsp.github.io/ts-toolbelt/modules/object

Extension points exported contracts — how you extend this code

Object (Interface)
(no doc)
sources/Misc/JSON/Object.ts
List (Interface)
(no doc)
sources/Misc/JSON/Array.ts

Core symbols most depended-on inside this repo

entry
called by 3
sources/Iteration/_Internal.ts
isPathIncluded
called by 2
scripts/tools/regex-update-file.ts
pathToRegExp
called by 2
scripts/tools/regex-update-file.ts
paths
called by 2
scripts/tools/regex-update-file.ts
replace
called by 2
scripts/tools/regex-update-file.ts
IterationOfGenerator
called by 1
sources/Iteration/_Internal.ts
sign
called by 1
sources/Iteration/_Internal.ts
prev
called by 1
sources/Iteration/_Internal.ts

Shape

Function 25
Class 2
Interface 2
Method 1

Languages

TypeScript100%

Modules by API surface

tests/Object.ts10 symbols
scripts/tools/regex-update-file.ts7 symbols
sources/Iteration/_Internal.ts6 symbols
tests/Class.ts3 symbols
tests/Function.ts2 symbols
sources/Misc/JSON/Object.ts1 symbols
sources/Misc/JSON/Array.ts1 symbols

Dependencies from manifests, versioned

@commitlint/cli11.0.0 · 1×
@commitlint/config-conventional11.0.0 · 1×
@typescript-eslint/parser4.14.0 · 1×
eledoc0.2.0 · 1×
eslint7.18.0 · 1×
eslint-plugin-fp2.3.0 · 1×
eslint-plugin-react7.22.0 · 1×
husky4.3.0 · 1×
npx10.2.0 · 1×
sort-package-json1.48.0 · 1×
standard-version9.1.0 · 1×
ts-node9.1.0 · 1×

For agents

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

⬇ download graph artifact