n8n node to encode text to base64 and decode base64 to text
npm install n8n-nodes-base64This is an n8n community node that provides Base64 encoding and decoding functionality.
n8n is a fair-code licensed workflow automation platform.
This node allows you to:
- Encode text to Base64
- Decode Base64 to text
For users on n8n v0.187+:
1. Go to Settings > Community Nodes
2. Select Install
3. Enter n8n-nodes-base64 in Enter npm package name
4. Agree to the risks of using community nodes
5. Select Install
To install this node manually:
``bash`
cd /your-n8n-installation-folder
npm install n8n-nodes-base64
Note: n8n automatically detects all installed nodes. If you installed n8n globally, you might need to install the package globally as well (npm install -g n8n-nodes-base64`).
1. Add the Base64 node to your workflow
2. Select the Encode operation
3. Enter the text you want to encode in the Text field
4. Execute the node to get the Base64 encoded string
1. Add the Base64 node to your workflow
2. Select the Decode operation
3. Enter the Base64 string you want to decode in the Base64 field
4. Execute the node to get the decoded text
* n8n community nodes documentation
* Base64 encoding explained