bragg-sns

2.0.0 • Public • Published

bragg-sns Build Status

SNS middleware for bragg.

This little piece of middleware makes it possible to handle SNS events as if they where normal requests.

Install

$ npm install --save bragg-sns

Usage

const app = require('bragg')();
const router = require('bragg-router')();
const sns = require('bragg-sns');

// Listen for events in the `TopicName` topic
router.post('sns:TopicName', ctx => {
    ctx.body = ctx.request.body;
});

app.use(sns());
app.use(router.routes());

exports.handler = app.listen();

The sns: prefix is attached by this module and is followed by the name of the topic that originated the event. The message of the event is provided in the body property of the request object.

Mapping

It's also possible to provide a mapping object or function to transform one topic to another.

With an object, it will look like this.

// Data on the `TopicNameDev` topic will be posted on the `sns:TopicName` handler
app.use(sns({TopicNameDev: 'TopicName'}));

With a function, it looks like this.

// Data on the `TopicNameDev` topic will be posted on the `sns:TopicName` handler
app.use(sns(topic => topic.replace(/Dev$/, '')));

API

sns([map])

map

Type: object Function

Map a topic name to another name with either a map or a function.

License

MIT © Sam Verschueren

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    1,091
    • latest

Version History

Package Sidebar

Install

npm i bragg-sns

Weekly Downloads

2,016

Version

2.0.0

License

MIT

Unpacked Size

4.71 kB

Total Files

4

Last publish

Collaborators

  • samverschueren