From aa1f9017fe56dc026f8317e994900eddc80ea22c Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 4 Nov 2017 21:39:04 +0000 Subject: [PATCH 1/2] Update docs to include Manage Pallet option --- docs/getting-started/upgrading.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/getting-started/upgrading.md b/docs/getting-started/upgrading.md index 7636241e..6333ea9a 100644 --- a/docs/getting-started/upgrading.md +++ b/docs/getting-started/upgrading.md @@ -19,15 +19,17 @@ latest version with the following commands: sudo npm cache clean sudo npm install -g --unsafe-perm node-red -To check for outdated nodes that are installed in the user directory you can: +To check for, and re-install outdated nodes that are installed in the user directory you have two options: + +Use the `Manage Pallet` menu from within node-red's editor UI. You can then remove, add, and also update nodes. Or via the command-line as follows; cd ~/.node-red npm outdated -This will print a list of nodes that can be updated. To update them you can then run: +This will print a list of nodes that can be updated. +To re-install the latest node version you can then run: - npm update # to update all nodes, or - npm update foo # to only update a node called foo + npm install foo # to re-install the latest version of a node called foo You will then need to stop and restart Node-RED. From 6972f8189b056f995da184f5b527f590abf606f0 Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 4 Nov 2017 21:50:44 +0000 Subject: [PATCH 2/2] Typo --- docs/getting-started/upgrading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/upgrading.md b/docs/getting-started/upgrading.md index 6333ea9a..7df32519 100644 --- a/docs/getting-started/upgrading.md +++ b/docs/getting-started/upgrading.md @@ -21,7 +21,7 @@ latest version with the following commands: To check for, and re-install outdated nodes that are installed in the user directory you have two options: -Use the `Manage Pallet` menu from within node-red's editor UI. You can then remove, add, and also update nodes. Or via the command-line as follows; +Use the `Manage Pallete` menu from within node-red's editor UI. You can then remove, add, and also update nodes. Or via the command-line as follows; cd ~/.node-red npm outdated