Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghoullier/awesome-template-literal-types
Curated list of awesome Template Literal Types examples
https://github.com/ghoullier/awesome-template-literal-types
List: awesome-template-literal-types
awesome awesome-list lists resources
Last synced: about 1 month ago
JSON representation
Curated list of awesome Template Literal Types examples
- Host: GitHub
- URL: https://github.com/ghoullier/awesome-template-literal-types
- Owner: ghoullier
- Created: 2020-09-25T20:36:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T14:24:41.000Z (9 months ago)
- Last Synced: 2024-04-13T20:59:57.936Z (7 months ago)
- Topics: awesome, awesome-list, lists, resources
- Language: Dockerfile
- Homepage:
- Size: 12 MB
- Stars: 1,131
- Watchers: 20
- Forks: 25
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- fucking-lists - awesome-template-literal-types
- awesome-list - awesome-template-literal-types
- lists - awesome-template-literal-types
- ultimate-awesome - awesome-template-literal-types - Curated list of awesome Template Literal Types examples. (Other Lists / PowerShell Lists)
README
# TypeScript Awesome Template Literal Types
Curated list of awesome [Template Literal Types](https://devblogs.microsoft.com/typescript/announcing-typescript-4-1-beta/#template-literal-types) examples.
## Handbook
- [Template Literal Types](https://www.typescriptlang.org/docs/handbook/2/template-literal-types.html)
## Articles
- [I need to learn about TypeScript Template Literal Types](https://dev.to/phenomnominal/i-need-to-learn-about-typescript-template-literal-types-51po)
- [TypeScript: Template Literal Types](https://michalzalecki.com/typescript-template-literal-types/)
- [Exploring Template Literal Types in TypeScript 4.1](https://davidtimms.github.io/programming-languages/typescript/2020/11/20/exploring-template-literal-types-in-typescript-4.1.html)
- [TypeScript Splits the Atom!](https://effectivetypescript.com/2020/11/05/template-literal-types/)
- [Mastering TypeScript Template Literal Types](https://betterprogramming.pub/mastering-typescript-template-literal-types-f4131a94ffb1)## Videos
- [It's Clash of Code but with TypeScript only](https://www.youtube.com/watch?v=_3vIxQyfi8E) by [William Candillon](https://github.com/wcandillon)
- [It's Brainf**k , but types only](https://www.youtube.com/watch?v=DUjRBaJM01E) by [William Candillon](https://github.com/wcandillon)
- [It's Wordle, but types only](https://www.youtube.com/watch?v=JT30j4nhej4) by [William Candillon](https://github.com/wcandillon)
- [All 140 TypeScript Challenges - Video Solutions and Explanations](https://www.youtube.com/watch?v=QFfL2azrshE&list=PLOlZuxYbPik180vcJfsAM6xHYLVxrEgHC) by [Michigan TypeScript](https://twitter.com/MiTypeScript)## Examples
- [dot notation string type-safe](#dot-notation-string-type-safe)
- [document.querySelector](#documentqueryselector)
- [Router params parsing](#router-params-parsing)
- [static-path library](#static-path-library)
- [Expression parser](#expression-parser)
- [JSON Parser](#json-parser)
- [JSON Serializer](#json-serializer)
- [GraphQL Typed AST](#graphql-typed-ast)
- [SQL Database](#sql-database)
- [CSS Parser](#css-parser)
- [ELIZA Bot](#eliza-bot)
- [Typescript Type System Adventure - by Rick Love](#typescript-type-system-adventure---by-rick-love)
- [Printf/Log](#printflog)
- [Bitwise Arithmetic](#bitwise-arithmetic)
- [tRPC](#trpc)
- [Split](#split)
- [Privatized](#privatized)
- [Join](#join)
- [Extract all paths from object](#extract-all-paths-from-object)
- [Repeat](#repeat)
- [Schummar-translate](#schummar-translate)
- [kysely](#kysely)
- [chicane](#chicane)
- [prefix-properties](#prefix-properties)
- [typelevel-parser](#typelevel-parser)
- [type-trident](#type-trident)
- [hypescript](#hypescript)
- [anysort](#anysort)
- [wordle](#wordle)
- [pretty-cache-header](#pretty-cache-header)
- [nanostores-router](#nanostores-router)
- [dot-path-value](#dot-path-value)
- [infer-html-events](#infer-html-events)
- [hotscript](#hotscript)
- [brouther](#brouther)
- [hkt-toolbelt](#hkt-toolbelt)
- [string-ts](#string-ts)
- [typeskell](#typeskell)
- [gql.tada](#gql.tada)## Use Cases
### dot notation string type-safe
[Tweet](https://twitter.com/diegohaz/status/1309489079378219009)
### document.querySelector
[Tweet](https://twitter.com/MikeRyanDev/status/1308472279010025477)
### Router params parsing
[Tweet](https://twitter.com/danvdk/status/1301707026507198464)
### static-path library
[Tweet](https://twitter.com/garybernhardt/status/1466104868498817032)
[static-path repo](https://github.com/garybernhardt/static-path)
[Video walkthrough](https://www.youtube.com/watch?v=KRMJIiGE0ds)
### Expression parser
[Tweet](https://twitter.com/NicoloRibaudo/status/1304515347932999680)
### JSON Parser
[Tweet](https://twitter.com/buildsghost/status/1301976526603206657)
### JSON Serializer
[Tweet](https://twitter.com/RReverser/status/1332088256826142722)
[Gist](https://gist.github.com/RReverser/ad3bef657aa32a15ca9e55386feb8fb6)
### GraphQL Typed AST
[Tweet](https://twitter.com/dotansimha/status/1302294238139473923)
### SQL Database
[Tweet](https://twitter.com/c_pick/status/1307433762914009090)
### CSS Parser
[Tweet](https://twitter.com/anuraghazru/status/1310634306092462080)
### ELIZA Bot
[Tweet](https://twitter.com/mrjacobbloom/status/1310530442177568768)
### Typescript Type System Adventure - by Rick Love
[Blog](https://ricklove.me/typescript-type-system-adventure)
[Tweet](https://twitter.com/RickLoveToldMe/status/1320875032197894144?s=20)
### Printf/Log
Similar to Idris' type-safe dependently-typed printf, but in TypeScript, working with console.log.
[GitHub](https://gist.github.com/joaomilho/d31a4557f1b850ec7e65730a4316c80b)
### Bitwise Arithmetic
[GitHub](https://gist.github.com/cleoold/c278c1689b41a25ce1417eb4c07877f4#file-bitstring-ts)
### tRPC
TypeScript toolkit for building end-to-end type-safe APIs
The client above is not importing any code from the server, only it's type declarations.
### Split
Split a string value with a given sepatator
[Tweet](https://twitter.com/anuraghazru/status/1381685555465920512)
### Privatized
Automaticly privatize methods prefixed by '\_'
[Tweet](https://twitter.com/fabiospampinato/status/1388187928925442050)
### Join
Type safe `ReadonlyArray.join`
[Tweet](https://twitter.com/ghoullier/status/1390331553394331648)
### Extract all paths from object
[Tweet](https://twitter.com/wcandillon/status/1409503819575275531)
### Repeat
[Tweet](https://twitter.com/ghoullier/status/1408440499283935238)
### schummar-translate
Extract typed ICU params from translation strings
### kysely
A type-safe typescript SQL query builder
[WebSite](https://koskimas.github.io/kysely/)
### chicane
A simple and safe router for React and TypeScript, based on template literal types capabilities.
### Prefix Properties
[Tweet](https://twitter.com/ghoullier/status/1471531186749067264)
### Typelevel Parser
TypeLevel DSL Parser
### Type-Trident
A curated list of advanced type level madness
### HypeScript
A simplified implementation of TypeScript's type system written in TypeScript's own type system
[Tweet](https://twitter.com/ronenamiel/status/1552375586584133633)
### Anysort
Anysort,Flexible and Full Typed multi-properties sorter for nested objects
### Wordle
A pure type only implementation of Wordle game
### pretty-cache-header
Cache-control header utility that parses human readable time strings into seconds. Time based values use Template Literal Types to help avoid passing invalid time string formats.
### nanostores-router
A tiny URL router for [Nano Stores](https://github.com/nanostores/nanostores) state manager.
### dot-path-value
Safely get deep nested properties using dot notation.
[GitHub](https://github.com/g-makarov/dot-path-value)
### infer-html-events
Infer event names out of HTML elements
[Tweet](https://twitter.com/beraliv/status/1622971034591805441)
### hotscript
Higher-Order TypeScript: A lodash-like library for types, with support for type-level lambda functions.
https://user-images.githubusercontent.com/2315749/222081717-96217cd2-ac89-4e06-a942-17fbda717cd2.mp4
[Tweet](https://twitter.com/GabrielVergnaud/status/1627593386852028417)
### brouther
The brother router to help in React apps
### hkt-toolbelt
✨ Functional and composable type utilities
## string-ts
Strongly-typed string functions for all!
## typeskell
Experiment to declare typesclasses with programmatic type signatures.
## gql.tada
🪄 Magical GraphQL query engine for TypeScript