From 28a3e7d2b8fd72b683aab8a98dd1fcee4624e4cb Mon Sep 17 00:00:00 2001 From: Leonid Vinogradov Date: Mon, 2 Dec 2024 08:12:51 +0300 Subject: [PATCH] docs: update links to `npx` (#680) * docs: update links to npx * Update getting-started.md --------- Co-authored-by: Hiroki Osame --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 127dfa6d3..f212d5622 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -6,7 +6,7 @@ Before you can start using _tsx_, ensure that you have [Node.js installed](https ## Quickstart -`tsx` can be executed with [npx](https://docs.npmjs.com/cli/v8/commands/npx)—a tool to run npm packages without installing them. +`tsx` can be executed with [npx](https://docs.npmjs.com/cli/commands/npx/)—a tool to run npm packages without installing them. In your command-line, simply pass in a TypeScript file you'd like to run. It's that simple! @@ -67,7 +67,7 @@ In the `scripts` object, you can reference `tsx` directly without `npx`: ## Global installation -If you want to use `tsx` anywhere on your computer (without [`npx`](https://docs.npmjs.com/cli/v8/commands/npx)), install it globally: +If you want to use `tsx` anywhere on your computer (without [`npx`](https://docs.npmjs.com/cli/commands/npx/)), install it globally: ::: code-group ```sh [npm]