Native Node.js modules with IOTA Streams Rust binding
Install via npm
npm install iota-streams-js
const streams = require('iota-streams-js')
streams.publish("Hello").then(success => {
console.log("Greetings published successfully ", success)
}).catch(error => {
console.log("Greetings published error ", error)
})