We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef028f commit 784de60Copy full SHA for 784de60
README.md
@@ -1,4 +1,7 @@
1
# lambda-multipart-parser
2
+```
3
+npm install lambda-multipart-parser --save
4
5
6
## Introduction
7
This module will parse the multipart-form containing files and fields from the lambda event object.
@@ -24,3 +27,14 @@ This module will parse the multipart-form containing files and fields from the l
24
27
```
25
28
26
29
## Usage
30
31
+const parser = require('lambda-multipart-parser');
32
+
33
+const result = await parser.parse(event);
34
+console.log(result.files);
35
36
37
+## Test
38
39
+npm run test
40
package-lock.json
0 commit comments