Git Product home page Git Product logo

ts-toolbelt's Introduction

logo

ts-toolbelt

๐Ÿ‘ท Higher type safety for TypeScript
Explore the docs ยป

๐ŸŽฎ View Demo ยท ๐Ÿž Report Bug ยท ๐Ÿฉ Request Feature . ๐Ÿค” Ask Questions

Table of Contents

๐Ÿ“œ About

ts-toolbelt is a collection of types that makes TypeScript even safer. It's goal is to improve type correctness while adding a whole new set of features to TypeScript.

It uses the type system itself for TypeScript to compute more complex types. In other words, its API exposes types that trade CPU & RAM for higher type safety.

ts-toolbelt completes TypeScript with a collection of more than 150 tested types.

Goals

  • This package aims to be the home of all utility types
  • Keep reasonable performance, so it will not bloat TS
  • Computed types are always readable, like if you typed it
  • Software that's more type-safe, flexible & more robust
  • Bring a whole new set of extra features to TypeScript
  • Types can be combined together to create new ones!

๐Ÿฉ Features

Here's some of the most useful features:

If you don't find the type you are looking for, you are welcome to open a feature request!

๐Ÿ Getting Started

Prerequisites

This is important, the lowest TypeScript version that is supported is 3.5

npm install typescript@^3.5.0 --save

Installation

npm install ts-toolbelt --save

Hello World

import {A, B, C, F, I, N, O, S, T, U} from 'ts-toolbelt'
// Wonder what these letters mean? Check the docs below

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

The project is organized around TypeScript's main concepts:

A(ny) B(boolean) C(lass) F(unction) I(teration) N(umber)
O(bject) O(bject).P S(tring) T(uple) U(nion) Test

Imports

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

  • Explicit

    import {Any, Boolean, Class, Function, Iteration, Number, Object, String, Tuple, Union} from 'ts-toolbelt'
  • Compact

    import {A, B, C, F, I, N, O, S, T, U} from 'ts-toolbelt'
  • Portable

    import tb from 'ts-toolbelt'

Internal Docs

If you're interested to learn how the internals work, this tutorial will get you on track to start writing your own types.

In this wiki, you'll find some extra resources for your learning & understanding.

It is incremental and it will be completed on demand, you can ask for this below.

Are you missing something? Participate to the open-wiki by posting your questions right here.

๐ŸŽ Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. There are many ways to contribute to the project:

Community

Codebase

  • Improving existing documentation
  • Adding new types to the collection

Pull Requests

  1. Read the tutorial
  2. Fork the project
  3. Clone your fork
  4. Create a pr/feature branch
    git checkout -b pr/CoolFeature
  5. Commit your changes
    git commit -m 'Added this CoolFeature'
  6. Run the tests
  7. Commit your changes
    git push origin pr/CoolFeature
  8. Open a pull request

๐Ÿ‘ Sponsoring issues

Sponsored issues have higher priority over non-critical issues.

You can either request a new feature or a bug fix then fund it.



The money will be transparently split with an issue's assignees.

๐Ÿ’‰ Running tests

For this project

To run the lint & type tests, simply run:

npm test

For your project

Want to test your own types? Let's get started:

import {A, B, C, F, I, N, O, S, T, U, Test} from 'ts-toolbelt'

const {checks, check} = Test

checks([
    check<N.Plus<'1', '30'>,    '31',  Test.Pass>(),
    check<N.Plus<'5', '-3'>,    '2',   Test.Pass>(),
])

Place it in a file that won't be executed, it's just for TypeScript to test types

๐Ÿ”ง Compatibility

The project is maintained to adapt to the constant changes of TypeScript:

ts-toolbelt typescript
1.x.x ~3.5.x
2.x.x ^3.5.x

Major version numbers will upgrade whenever TypeScript had breaking changes (it happened that TS had breaking changes on minor versions). Otherwise, the release versions will naturally follow semantic versioning.

๐Ÿ”ฎ What's next

  • Automated performance tests
    # performance is checked manually with 
    npx tsc --noEmit --extendedDiagnostics
  • Improve with user feedback
  • Need to write the examples

๐Ÿ™ Acknowledgements

Many, many thanks to all the contributors and:

๐Ÿ’Ÿ Friendly Projects

ts-toolbelt's People

Contributors

millsp avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.