davidgf / aws-event-parser

Tiny utility that parses AWS events into a plain JavaScript object with no effort on your side

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-event-parser

aws-event-parser is a tiny utility that parses AWS events like SNS, S3, Kinesis Stream, DynamoDB Stream and returns a plain JavaScript object with no effort on your side.

Example:

var parse = require('aws-event-parser').parse;
var items = parse(kinesisEvent);
import { parse } from 'aws-event-parser';
const items = parse(kinesisEvent);

Installing

$ npm install --save aws-event-parser

Contributing

Contributions are always welcome!

Credits

Developed by [microapps] (http://microapps.com/)

License

aws-event-parser is available under the MIT license. See the LICENSE file for more info.

About

Tiny utility that parses AWS events into a plain JavaScript object with no effort on your side

License:MIT License


Languages

Language:JavaScript 100.0%