From 29c34b679aff5493056f9ee82b32e5ad10a8a89e Mon Sep 17 00:00:00 2001 From: Benjamin Goering <171782+gobengo@users.noreply.github.com> Date: Thu, 16 Nov 2023 10:50:20 -0800 Subject: [PATCH] add `npm init -y` in intro steps before `npm install @web3-storage/w3up-client` --- problems/0-introduction/problem.md | 1 + 1 file changed, 1 insertion(+) diff --git a/problems/0-introduction/problem.md b/problems/0-introduction/problem.md index 22d78a9..6ea553a 100644 --- a/problems/0-introduction/problem.md +++ b/problems/0-introduction/problem.md @@ -9,6 +9,7 @@ Let's get you setup. Make a new directory, and install the client library like s ```sh mkdir learnyouw3up cd learnyouw3up +npm init -y npm install @web3-storage/w3up-client ```