An intersystem communicator
npm install paperboy-communicatornpm install paperboy-communicator> Set the PAPERBOY_REDIS_URL in your .env file (or don't and paperboy will use your local Redis server by default)
javascript
const Paperboy = require(paperboy-communicator);
const paperboy = new Paperboy({connectionName: data-example});
paperboy.push(example, Hello World!);
paperboy.pull(example)
.then((result) => {
console.log(result); // "Hello World!" is logged to the console
});
`Example: Paperboy can be used as a publish/subscribe service
`javascript
const Paperboy = require(paperboy-communicator);
const paperboy = new Paperboy({connectionName: pubsub-example});
paperboy.on(my-event, (data) => {
console.log(data); // "Hello World!" is logged to the console
});paperboy.trigger(
my-event, Hello World!);
``