Node-RED: Manage projects

How to use "Projects" in Node-RED

Welcome to the Stackhero documentation

Stackhero offers a fully managed Node-RED cloud environment designed to help you build workflows quickly:

  • Integrated MQTT server (Mosquitto) for seamless IoT integration.
  • Full access to the Node-RED admin interface for managing your flows and settings.
  • Node-RED Dashboard included for real-time visualization.
  • Dedicated SMTP email server included, with no sending limits.
  • Effortless one-click updates to easily keep your instance up to date.
  • Custom domain names with automatic HTTPS: for example, https://node-red.your-company.com.
  • High performance and enhanced security thanks to private, dedicated infrastructure.

You can have a secure, production-ready Node-RED cloud hosting instance up and running in about 5 minutes. Stackhero takes care of installation, updates, and infrastructure so you can focus on building your automations.

"Projects" in Node-RED is a powerful feature that integrates Git-based version control directly into your workflow. By leveraging this functionality, it becomes much easier to manage and synchronize your flows with external Git repositories, which is particularly useful for team collaboration and maintaining an organized development process.

To get started, sign in to your Node-RED instance. Click the "hamburger" menu icon in the top-left corner, go to "Projects", and select "New".

Welcome screenWelcome screen

Before creating or cloning a project, you need to generate a public key. If prompted, choose the Not right now option. Next, open the menu (the "hamburger" button in the top-right corner), go to Settings, and then to the Git config section.

In the "Committer Details" area, enter your Git username and email address. This information links your Git commits to your identity. For consistency, you may want to set the username as Node-RED and use an email such as nodered@<XXXXXX>.stackhero-network.com.

Git configuration panelGit configuration panel

When you are ready, click the Add key button, give your key a descriptive name, and then click Generate key. You can then use the Copy public key to clipboard option to copy the key before closing the panel.

To connect Node-RED to a remote repository, follow these steps (the example here uses GitHub, but the process is similar for other platforms):

  1. Add your public key in your chosen platform's settings.
  2. Get the SSH URL for your Git repository.

You can either create a new repository or use an existing one. On GitHub, open your repository, go to Settings, then Deploy keys, and click Add deploy key. Paste in the public key you copied earlier, give it a clear name such as "Node-RED", check the Allow write access box, and click Add key.

Add public key on GitHubAdd public key on GitHub

Go back to your repository's Code tab and copy the SSH URL. This will usually look like [email protected]:<yourOrganization>/<yourRepositoryName>.git. If you are working with an existing repository, you will find this URL by clicking the Clone or download button.

Return to Node-RED, open the menu (top-right hamburger icon), select Projects, and then click "New".

Choose Clone Repository and verify your username and email settings. Paste the SSH URL of your repository into the Git repository URL field (for example, [email protected]:<yourOrganization>/<yourRepositoryName>.git) and click Clone Project.

If you are using a new repository, Node-RED may prompt you to create default project files. If so, select Create default project file.

Node-RED offers you the option to encrypt your flow credentials files before adding them to Git. Enabling encryption is strongly recommended to protect sensitive information. Be sure to keep the encryption key in a secure place. You will need it if you ever want to decrypt your credentials later.

When everything is ready, click Create project files to complete your project setup.

For more detailed information, the official Node-RED documentation on Projects is a helpful resource: Node-RED Projects Documentation.

You may also find this video tutorial useful: Introduction to Node-RED Projects (YouTube).