0.1.0 • Published 6 years ago

aws-request-parser v0.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

aws-request-parser

Parse requests of AWS API.

Installation

npm i aws-request-parser

Usage

const { awsRequestParser } = require('aws-request-parser');

const app = express();

cosnt options = {
  services: {
    Lambda: {
      invoke(params, callback) {
        // Do something with using params.

        callback(null, {
          StatusCode: 200,
        });
      },
    },
  },
};

awsRequestParser(options)(app)(err => {
  // Do something after the app is configured.
});

Not supported yet

  • rest-xml protocol
  • json protocol
  • query protocol
  • ec2 protocol

License

MIT