From 89ec3a6f4c47a9604559a72071f282eb2805bf98 Mon Sep 17 00:00:00 2001 From: milahu Date: Sun, 6 Dec 2020 18:43:03 +0100 Subject: [PATCH] fix npm init wasm-app --- .../src/tutorials/npm-browser-packages/using-your-library.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorials/npm-browser-packages/using-your-library.md b/docs/src/tutorials/npm-browser-packages/using-your-library.md index 19c45f5..2618afe 100644 --- a/docs/src/tutorials/npm-browser-packages/using-your-library.md +++ b/docs/src/tutorials/npm-browser-packages/using-your-library.md @@ -14,10 +14,11 @@ project: [`create-wasm-app`]: https://github.com/rustwasm/create-wasm-app ``` -npm init wasm-app +npm init wasm-app my-new-wasm-app ``` -This tool will ask you for the name of a project, and then create a directory with that name. +Instead of `my-new-wasm-app` you can choose a different project name. +The tool will create a directory with that name. If we look in that directory, we'll see the following: