0.7.2 • Published 5 months ago

@yourrentals/cloudevent-publisher-core v0.7.2

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

@yourrentals/cloudevent-publisher-core

This library defines a JS library to publish messages to the message bus.

Installation

yarn add @yourrentals/cloudevent-publisher-core

Usage

import { Publisher } from '@yourrentals/cloudevent-publisher-core';

const publisher = new Publisher({
  source: 'publisher',
  topics: [
    {
      eventType: 'my-event',
      topicArn: 'arn:aws:sns:eu-west-1:123456789012:my-topic',
    },
  ],
});

await publisher.publish('my-event', {
  data: {
    foo: 'bar',
  },
});

await publisher.publishBatch('my-event', [
  {
    data: {
      foo: 'bar',
    },
  },
]);
0.7.2

5 months ago

0.7.1

5 months ago

0.6.1

7 months ago

0.6.0

7 months ago

0.5.2

7 months ago

0.5.1

7 months ago

0.5.0

7 months ago

0.4.3

7 months ago

0.4.2

7 months ago

0.4.1

7 months ago