Comments on: Exporting and Backing Up your Node-RED Nodes https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/ Learn ESP8266, ESP32, Arduino, and Raspberry Pi Tue, 30 Aug 2022 10:27:02 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: Svein Hauge https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-779566 Tue, 30 Aug 2022 10:27:02 +0000 http://randomnerdtutorials.com/?p=25763#comment-779566 The manual way: /Accessories/SD Card Copier takes copy of the current SD card that the Pi is running from and creates a bootable copy on a USB-SD adapter without interrupting the Pi.

If/when the running SD card gets corrupted, just power down and insert the copy instead and you are up and running again.

]]>
By: Sara Santos https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-716979 Wed, 05 Jan 2022 12:04:27 +0000 http://randomnerdtutorials.com/?p=25763#comment-716979 In reply to Bob.

Hi.
Thanks.
At the moment, we don’t have any tutorials about backing up the Rpi microSD card.
But, with a quick google search, you’ll find that information.
Regards,
Sara

]]>
By: Bob https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-716812 Tue, 04 Jan 2022 13:42:09 +0000 http://randomnerdtutorials.com/?p=25763#comment-716812 I just found this but sure wish I did a year ago!! I stupidly never made any back ups when I built my “garage automation” project and my sd card got corrupted!!! I lost it all!!

I’m here again rebuilding the whole thing. It’s fun again taking the home automation course all over but lots of work! Hard to remember how I had it all set up. If I knew of saving the nodes, it would have been a breeze!

I will be saving my node red as well as making a back up of the whole card! (belt and suspenders approach)

Any tutorials here on backing up the micro SD card?? That’ s my next learning project. 🙂

Thank you for all the FANTASTIC tutorials!!!

Bob

]]>
By: Sara Santos https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-505324 Mon, 12 Oct 2020 15:51:26 +0000 http://randomnerdtutorials.com/?p=25763#comment-505324 In reply to Klaus.

You’re welcome! 😀

]]>
By: Klaus https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-505019 Sun, 11 Oct 2020 12:18:13 +0000 http://randomnerdtutorials.com/?p=25763#comment-505019 Excellent,

as usual!!

Some of the above info I did not even find in the official node-red dokumemtation.

Please continue your (Sara&Rui) articles.

Klaus

]]>
By: Lance Benson https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-460020 Mon, 25 May 2020 00:15:06 +0000 http://randomnerdtutorials.com/?p=25763#comment-460020 Thanks for this.

Note that in addition to selecting with your mouse all the nodes that you wish to export, as suggested, you can hit Ctrl+A to select all.

]]>
By: Marco https://randomnerdtutorials.com/exporting-and-backing-up-your-node-red-nodes/#comment-355756 Thu, 14 Feb 2019 15:39:36 +0000 http://randomnerdtutorials.com/?p=25763#comment-355756 I want to save quite ofter as a backup, so I optimized the save process. Create a bookmarklet with this URL, and run it once every session. This creates the new button “Save to file”. Enjoy it.

Here’s the code: javascript:(function(){ $(‘#clipboard-dialog-copy’).after(‘Save to file’); $(‘#exportToFileButton’).click(function() { var uri = ‘data:text/csv;charset=utf-8,’ + escape($(‘#clipboard-export’).val()); var fileName = JSON.parse($(‘#clipboard-export’).val())[0].label; var linkField = document.createElement(“a”); linkField.href = uri; linkField.style = “visibility:hidden”; linkField.download = fileName + “.json”; document.body.appendChild(linkField); linkField.click(); document.body.removeChild(linkField); }); })();

]]>