From d1d142358822c14a82fb1c827c526794402c6702 Mon Sep 17 00:00:00 2001 From: Toby Ealden Date: Thu, 17 Oct 2024 20:49:29 +0100 Subject: [PATCH] fix: order of install/run (#1029) --- runtime/fundamentals/node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/fundamentals/node.md b/runtime/fundamentals/node.md index f05e62da2..ddf4e22a3 100644 --- a/runtime/fundamentals/node.md +++ b/runtime/fundamentals/node.md @@ -406,8 +406,8 @@ If your project has a `package.json` file, you can use the manual mode, which requires an installation step to create your `node_modules` directory: ```sh -deno run --node-modules-dir=manual main.ts deno install +deno run --node-modules-dir=manual main.ts ``` or with a configuration file: