decode-post-body-params

1.0.1 • Public • Published

Decode Post Body Params

About

I created this library because I felt the need for parsing post body params through AWS Lambda without having to write a complex parser (although that is still possible).

That way I can use a framework such as the Serverless framework to deploy without worrying about logging into the console.

Therefore speeding up development

Installing

npm i decode-post-body-params

Contributing

All contributions are welcome and appreciated. Open Source is a meritocracy who doesn't care who you are.

Usage:

Example: Grab a post param called 'address'

event.body being the post body received from AWS Lambda.

var decodebodyparams = require('decode-post-body-params');
var data_address = decodebodyparams('address', "http://localhost/?" + event.body);

Readme

Keywords

none

Package Sidebar

Install

npm i decode-post-body-params

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • nolim1t