From 03efc02643a6672e872f1ed2bc9351066bcf3a3e Mon Sep 17 00:00:00 2001 From: Dhrumil Patel Date: Thu, 11 Mar 2021 03:46:09 -0500 Subject: [PATCH] chore(docs): Update deploying-to-digitalocean-droplet (#30161) --- docs/docs/deploying-to-digitalocean-droplet.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/deploying-to-digitalocean-droplet.md b/docs/docs/deploying-to-digitalocean-droplet.md index f30db8c6bd587..6c21fda9f93d8 100644 --- a/docs/docs/deploying-to-digitalocean-droplet.md +++ b/docs/docs/deploying-to-digitalocean-droplet.md @@ -30,7 +30,7 @@ Follow these instructions for installs on an Ubuntu droplet. ```shell sudo apt-get update - sudo apt-get install node + sudo apt-get install nodejs ``` 3. Install npm @@ -42,7 +42,7 @@ Follow these instructions for installs on an Ubuntu droplet. To view the version of Node.js and npm installed, run, ```shell - node -v + nodejs -v npm -v ``` @@ -57,7 +57,7 @@ Follow these instructions for installs on an Ubuntu droplet. > You can either exit and restart your terminal or refresh the cache by running the following commands: ```shell - hash node + hash nodejs hash npm ```