kinesis-writable

v1.0.0
Write newline-delimited data to Kinesis.

Kinesis Writable

npm install kinesis-writable

Stream data to an AWS Kinesis stream as fast as possible — but no faster.

Newline are treated as delimiters.

Example

// stdin.js
var kpw = require('kinesis-writable')
var stream = kpw.create('your-stream-name', {region: 'us-west-2'}, function (data) {
  return doSomethingWithDataToDecidePartitionKey(data)
})
process.stdin.pipe(stream)
echo -n "hello\nworld" | node stdin.js

# Writes "hello" and "world" as individual records to Kinesis
npm i kinesis-writable

Metadata

  • MIT
  • Whatever
  • Evan Solomon
  • released 2/22/2015

Downloads

Maintainers