redis-stream-store

0.3.1 • Public • Published

redis-stream-store

Store streams in redis

Example

var store = require("redis-stream-store")(6379, "localhost", "prefix")
var stream = store.get("streamName")
stream.on("open", funciton () {
    stream.write("data goes in")
})
stream.on("data", function (data) {
    console.log("data comes out!", data)
})

Installation

npm install redis-stream-store

Tests

node test.js

Contributors

  • Raynos

MIT Licenced

/redis-stream-store/

    Package Sidebar

    Install

    npm i redis-stream-store

    Weekly Downloads

    1

    Version

    0.3.1

    License

    none

    Last publish

    Collaborators

    • raynos