New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ddb-stream-listener

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ddb-stream-listener

Attach a listener to a ddb table stream using custom event

  • 0.0.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

ddb-stream-listener

This library is used to attach lambda functions to your dynamoDB streams.

It is used to create event types and attach custom handlers to them.

To use this library create a class such as:

How to use

const EventSourceBase = require('ddb-stream-listener').EventSourceBase;

const TABLE_NAME = 'Events';

class Event extends EventSourceBase {
  constructor(entityId, eventType, payload, params) {
    super(TABLE_NAME, entityId, eventType, payload, params);
  }
  static create(entityId, eventType, payload, params){
    return new Event(entityId, eventType, payload, params);
  }
}

module.exports = Event;

This assumes that you have created a table named Events with with streams enabled.

To create an event you declare an eventType eg:

const EVENT_TYPES = {
  EXAMPLE_EVENT: 'example-event',
};

Import your new event type to where it will be used:

const Event = require('../events/eventModel/Event');
const { EXAMPLE_EVENT } = require('../lib/constants').EVENT_TYPES;

The event object has a save method that takes in the following parameters:

await Event.create(uuid.v1(), EXAMPLE_EVENT, {
      exampleKey: 'value'
    }).save();

To pick up events written to our Events table we need to create a lambda function (AWS) and attach it to the event stream of the Events Table The following syntax is used with the Serverless Framework

  onEvent:
    handler: src/events/stream.onEvent
    events:
      - stream:
          type: dynamodb
          arn:
            Fn::GetAtt:
              - EventsDynamoDbTable
              - StreamArn

The onEvent function can be declared as:

const StreamListener = require('ddb-stream-listener').StreamListener;
const { EXAMPLE_EVENT } = require('../lib/constants').EVENT_TYPES;
const listener = new StreamListener();

exports.onEvent = async (event, context) => {
  try {
    return await listener.onEvent(event, context);
  }
  catch (error) {
    log.error({ event, error }, error.message);
    throw error;
  }
};

listener.registerEventHandler(exampleHandler).on(EXAMPLE_EVENT);
async function exampleHandler(event) {
  try {
    await asyncFunction(params);
    await anotherAsyncFunction(params);
    return event;

  } catch (error) {
    throw error;
  }
}

And thats it! You know have a lambda that subscribes to events written to an dynamoDb table.

Keywords

FAQs

Package last updated on 27 May 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc