From 1c7def05e4e718885847be12a32dbef49a4aaec0 Mon Sep 17 00:00:00 2001 From: Kuntal Majee <112935590+Kuntalmajee2557@users.noreply.github.com> Date: Tue, 30 Jul 2024 21:23:13 +0530 Subject: [PATCH] Update 12-scaling-horizontally.md Trying to run an npm install command in a PowerShell environment, but PowerShell is interpreting the @ symbol as a splatting operator, which is causing the error. To avoid this, we can use quotes around the package name. --> npm install '@socket.io/cluster-adapter' --- docs/tutorial/12-scaling-horizontally.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/12-scaling-horizontally.md b/docs/tutorial/12-scaling-horizontally.md index 5269225b..e7975416 100644 --- a/docs/tutorial/12-scaling-horizontally.md +++ b/docs/tutorial/12-scaling-horizontally.md @@ -38,7 +38,7 @@ So let's install the cluster adapter: ```sh -npm install @socket.io/cluster-adapter +npm install '@socket.io/cluster-adapter' ```