From 7aca856ded2a0d1960ab2130d25829dc14c9753e Mon Sep 17 00:00:00 2001 From: MacMacky Date: Sat, 2 May 2026 10:46:15 +0800 Subject: [PATCH] fix(docs): update tsx documentation link --- pages/typescript/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/typescript/run.md b/pages/typescript/run.md index 1fd115c..fd9ed4c 100644 --- a/pages/typescript/run.md +++ b/pages/typescript/run.md @@ -24,7 +24,7 @@ npx ts-node example.ts ## Running TypeScript code with `tsx` -[tsx](https://tsx.is/) is another TypeScript execution environment for Node.js. It allows you to run TypeScript code directly in Node.js without the need to compile it first. Note, however, that it does not type check your code. So we recommend to type check your code first with `tsc` and then run it with `tsx` before shipping it. +[tsx](https://tsx.hirok.io/) is another TypeScript execution environment for Node.js. It allows you to run TypeScript code directly in Node.js without the need to compile it first. Note, however, that it does not type check your code. So we recommend to type check your code first with `tsc` and then run it with `tsx` before shipping it. To use `tsx`, you need to install it first: