
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@jakzo/type-gymnastics
Advanced tools
Collection of crazy advanced types in TypeScript. Just for fun, not intended for use in production.
TypeScript's type system is pretty powerful and as it turns out, is turing-complete, meaning any possible logic can be written with it. You may have seen types pushed to the limit in blog posts like this. This repository is my own collection of insane utility types.
The available types are listed in the API documentation.
npm install --save-dev @jakzo/type-gymnastics
your-code.ts:
import type { Math, Problems } from "@jakzo/type-gymnastics";
type Result = Math.Evaluate<"12 + 34 - 5*(6*7 % 8) + 9">;
// The type of `Result` is: 45
const b: Result = 45;
type NumQueensToPlace = 8;
type GridSize = 8;
type Board = Problems.NQueensVisualized<
Problems.NQueens<NumQueensToPlace, GridSize>,
GridSize
>;
// The type of `Board` is: "
// ♕ ◼️ ◻️ ◼️ ◻️ ◼️ ◻️ ◼️
// ◼️ ◻️ ◼️ ◻️ ♕ ◻️ ◼️ ◻️
// ◻️ ◼️ ◻️ ◼️ ◻️ ◼️ ◻️ ♕
// ◼️ ◻️ ◼️ ◻️ ◼️ ♕ ◼️ ◻️
// ◻️ ◼️ ♕ ◼️ ◻️ ◼️ ◻️ ◼️
// ◼️ ◻️ ◼️ ◻️ ◼️ ◻️ ♕ ◻️
// ◻️ ♕ ◻️ ◼️ ◻️ ◼️ ◻️ ◼️
// ◼️ ◻️ ◼️ ♕ ◼️ ◻️ ◼️ ◻️"
You can try it out at the TypeScript Playground.
For fun. 😄
If you're in VSCode, use this command whenever things start going wonky:
CTRL/CMD+SHIFT+P -> Restart TypeScript Server
The TS server will frequently get into a broken state while you're in the process of typing code so you may find that you quickly memorize this command. 🙂
When using the library, you will notice that many exported functions have an equivalent which begins with a _. This is because the library uses its own representation for certain data types (most notably numbers). The _ functions accept the internal representations so that functions can be chained together without constant converting to and from internal types.
For example, this library represents numbers as binary strings instead of TypeScript's number type. You can do String.Repeat<"a", Math.Fibonacci<3>> and it will work but if you want (or in some cases need) more efficiency, you can do this which will avoid converting the binary number to a number then back to a binary number:
type R = String._Repeat<"a", Math._Fibonacci<Integer.FromDecimal<3>>>;
FAQs
Collection of crazy advanced types in TypeScript.
We found that @jakzo/type-gymnastics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.