Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

serverless-plugin-offline-kinesis-stream

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-plugin-offline-kinesis-stream

Serverless framework offline plugin to support aws kinesis stream

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

serverless-plugin-offline-kinesis-stream

CircleCI Status NPM Version License

Serverless framework offline plugin to support kinesis stream

This plugin pull from kinesis stream and trigger serverless function if any records detected.

Installation

Install package

$ npm install --save serverless-plugin-offline-kinesis-stream

Usage

Add following config to serverless.yml file.

plugins:
  - serverless-plugin-offline-dynamodb-stream
  - serverless-plugin-offline-kinesis-stream
custom:
  dynamodbStream:
    host: {LOCAL_DYNAMODB_HOST}
    port: {LOCAL_DYNAMODB_PORT}
    streams:
      - table: {TABLE_NAME}
        functions:
          - {FUNCTION_NAME}
  kinesisStream:
    host: {LOCAL_KINESIS_HOST}
    port: {LOCAL_KINESIS_PORT}
    intervalMillis: 5000
    streams:
      - streamName: {STREAM_NAME}
        functions:
          - {FUNCTION_NAME}

Ensure your local kinesis is up and running, or you coulde also consider using kinesalite before starting your serverless offline process.

$ serverless offline start

Development

  • Cloning the repo
$ git clone https://github.com/orchestrated-io/serverless-plugin-offline-kinesis-stream.git
  • Installing dependencies
$ npm install
  • Running scripts
ActionUsage
Linting codenpm run lint
Running unit testsnpm run jest
Running code coveragenpm run coverage
Running lint + testsnpm test

Author

Emmanuel Kong

License

MIT

Keywords

node

FAQs

Package last updated on 14 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts