Tidy datagenerator, random and smaz nodes

This commit is contained in:
Dave Conway-Jones
2019-09-20 21:22:14 +01:00
parent 171f78ca5b
commit e8a7af18d6
9 changed files with 23 additions and 20 deletions

View File

@@ -7,9 +7,11 @@
</script>
<script type="text/x-red" data-help-name="smaz">
<p>A function that converts the <code>msg.payload</code> to and from smaz format.</p>
<p>A function that converts the <code>msg.payload</code> to and from the
<a href="https://github.com/antirez/smaz/blob/master/README" target="_new">smaz</a>
compression format.</p>
<p>If the input is a string it tries to convert it to a smaz buffer.</p>
<p>If the input is a smaz buffer it tries to decode it back to a string./</p>
<p>If the input is a smaz buffer it tries to decode it back to a string.</p>
<p>All other message types are dropped.</p>
</script>

View File

@@ -6,7 +6,7 @@ A <a href="http://nodered.org" target="_new">Node-RED</a> node to pack and unpac
Install
-------
Run the following command in your Node-RED user directory - typically `~/.node-red`
Either use the Manage Palette option in the Node-RED Editor menu, or run the following command in your Node-RED user directory - typically `~/.node-red`
npm install node-red-node-smaz

View File

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