update parser and time nodes info style

This commit is contained in:
Dave Conway-Jones
2016-03-02 13:27:48 +00:00
parent 86049c20cb
commit 1ee031cad7
16 changed files with 33 additions and 33 deletions

View File

@@ -22,7 +22,7 @@
</script>
<script type="text/x-red" data-help-name="base64">
<p>A function that converts the <b>msg.payload</b> to and from base64 format.</p>
<p>A function that converts the <code>msg.payload</code> to and from base64 format.</p>
<p>If the input is a buffer it converts it to a Base64 encoded string.</p>
<p>If the input is a Base64 string it converts it back to a binary buffer.</p>
</script>

View File

@@ -1,20 +1,20 @@
node-red-node-base64
====================
A <a href="http://nodered.org" target="_new">Node-RED</a> node to endcode and decode base64 format messages.
A <a href="http://nodered.org" target="_new">Node-RED</a> node to encode and decode base64 format messages.
Install
-------
Run the following command in the root directory of your Node-RED install
Run the following command in your Node-RED user directory - typically `~/.node-red`
npm install node-red-node-base64
npm i node-red-node-base64
Usage
-----
A function that converts the **msg.payload** to and from base64 format.
A function that converts the `msg.payload` to and from base64 format.
If the input is a binary buffer it converts it to a Base64 encoded string.

View File

@@ -1,6 +1,6 @@
{
"name" : "node-red-node-base64",
"version" : "0.0.1",
"version" : "0.0.2",
"description" : "A Node-RED node to pack and unpack objects to base64 format",
"dependencies" : {
},