From 67de197e7beb4c0d9a270dd24fe1f50b943934c6 Mon Sep 17 00:00:00 2001 From: Nicolas Kosinski Date: Wed, 11 Oct 2023 09:32:21 +0200 Subject: [PATCH] npm: describe implicit 'latest' version (#10925) --- pages/common/npm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/npm.md b/pages/common/npm.md index 1fd495688..ef909f613 100644 --- a/pages/common/npm.md +++ b/pages/common/npm.md @@ -16,11 +16,11 @@ `npm install {{module_name}}@{{version}}` -- Download a package and add it to the list of dev dependencies in `package.json`: +- Download the latest version of a package and add it to the list of dev dependencies in `package.json`: `npm install {{module_name}} --save-dev` -- Download a package and install it globally: +- Download the latest version of a package and install it globally: `npm install --global {{module_name}}`