Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/g-plane/type-gymnastics
Collection of wonderful TypeScript type gymnastics code snippets.
https://github.com/g-plane/type-gymnastics
Last synced: 18 days ago
JSON representation
Collection of wonderful TypeScript type gymnastics code snippets.
- Host: GitHub
- URL: https://github.com/g-plane/type-gymnastics
- Owner: g-plane
- License: mit
- Created: 2020-09-04T15:58:11.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-20T02:48:16.000Z (over 3 years ago)
- Last Synced: 2024-10-17T00:59:20.522Z (28 days ago)
- Language: TypeScript
- Homepage:
- Size: 76.2 KB
- Stars: 366
- Watchers: 8
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - type-gymnastics - plane | 172 | (TypeScript)
README
Type Gymnastics
Collection of wonderful TypeScript type gymnastics code snippets.
## 📚 Overview List
- [Better `querySelector`](https://github.com/g-plane/type-gymnastics/tree/master/src/better-querySelector) by [Pig Fang](https://github.com/g-plane) - More intelligent `querySelector` by parsing your given CSS selector. Also refer to a formal project: [typed-query-selector](https://github.com/g-plane/typed-query-selector).
- [C-printf Parser](https://github.com/g-plane/type-gymnastics/tree/master/src/c-printf-parser) by [Pig Fang](https://github.com/g-plane) - Parse placeholders like `%d` and `%s` for a `printf` format string.
- [Integers Comparator](https://github.com/g-plane/type-gymnastics/tree/master/src/integers-comparator) by [Pig Fang](https://github.com/g-plane) - Compare two integers that can be positive or negative or zero.
- [Query String Parser](https://github.com/g-plane/type-gymnastics/tree/master/src/query-string-parser) by [Pig Fang](https://github.com/g-plane) - Parse URL query string into an object literal type.
- [Spec-compliant HTML Parser](https://github.com/g-plane/type-gymnastics/tree/master/src/spec-compliant-html-parser) by [Pig Fang](https://github.com/g-plane) - An HTML parser conforms [WHATWG HTML Standard](https://html.spec.whatwg.org/multipage/syntax.html#syntax) (may not be fully).
- [Tuple Slice](https://github.com/g-plane/type-gymnastics/tree/master/src/tuple-slice) by [Pig Fang](https://github.com/g-plane) - `Array#slice` implementation at type level.
- [URL Parser](https://github.com/g-plane/type-gymnastics/tree/master/src/url-parser) by [Pig Fang](https://github.com/g-plane) - Parse a URL into an object literal type with each component of the URL.
- [Pinia](https://github.com/g-plane/type-gymnastics/tree/master/src/pinia) by [Pig Fang](https://github.com/g-plane) - Type-level function which is similar to [Pinia](https://github.com/posva/pinia).## 🔍 View Source Code
All the source code are under `src` directory.
It's recommended to view them locally with these steps:
1. Make sure you've installed Git, Node.js and Visual Studio Code.
2. Clone this repository with Git.
3. Run `npm i` or `yarn` to install TypeScript.
4. Open this repository in Visual Studio Code.
5. Enjoy it!## 📝 Contributing
Create a new empty directory under `src` directory
and give it a descriptive and short name,
then put your source code in it.
Also, please consider adding some tests.Optionally, you can put a readme in that directory to introduce
your code in detail.Last, please update the "Overview List" section of this readme
to add a new item for your code with brief.We assume your code published under MIT License.
## 🍻 Related
- [Type Challenges](https://github.com/type-challenges/type-challenges)
## 📜 License
MIT License
Logo is modified from Picture [Day 5 Gymnastics (19 Aug 2010)](https://www.flickr.com/photos/15322733@N05/4907865188). "Day 5 Gymnastics (19 Aug 2010)" by Singapore 2010 Youth Olympic Games is licensed with CC BY-NC 2.0.