@middy/do-not-wait-for-empty-event-loop 3.0.0-alpha.6 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +26 -16
  2. package/index.cjs +3 -0
  3. package/index.js +2 -22
  4. package/package.json +12 -5
package/README.md CHANGED
@@ -1,26 +1,36 @@
1
- # Middy do-not-wait-for-empty-event-loop middleware
2
-
3
- <div align="center">
4
- <img alt="Middy logo" src="https://raw.githubusercontent.com/middyjs/middy/main/docs/img/middy-logo.png"/>
5
- </div>
6
-
7
1
  <div align="center">
2
+ <h1>Middy do-not-wait-for-empty-event-loop middleware</h1>
3
+ <img alt="Middy logo" src="https://raw.githubusercontent.com/middyjs/middy/main/docs/img/middy-logo.svg"/>
8
4
  <p><strong>"Do not wait for empty event loop" middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda</strong></p>
9
- </div>
10
-
11
- <div align="center">
12
5
  <p>
13
- <a href="http://badge.fury.io/js/%40middy%2Fdo-not-wait-for-empty-event-loop">
6
+ <a href="https://www.npmjs.com/package/@middy/do-not-wait-for-empty-event-loop?activeTab=versions">
14
7
  <img src="https://badge.fury.io/js/%40middy%2Fdo-not-wait-for-empty-event-loop.svg" alt="npm version" style="max-width:100%;">
15
8
  </a>
9
+ <a href="https://packagephobia.com/result?p=@middy/do-not-wait-for-empty-event-loop">
10
+ <img src="https://packagephobia.com/badge?p=@middy/do-not-wait-for-empty-event-loop" alt="npm install size" style="max-width:100%;">
11
+ </a>
12
+ <a href="https://github.com/middyjs/middy/actions">
13
+ <img src="https://github.com/middyjs/middy/workflows/Tests/badge.svg" alt="GitHub Actions test status badge" style="max-width:100%;">
14
+ </a>
15
+ <br/>
16
+ <a href="https://standardjs.com/">
17
+ <img src="https://img.shields.io/badge/code_style-standard-brightgreen.svg" alt="Standard Code Style" style="max-width:100%;">
18
+ </a>
16
19
  <a href="https://snyk.io/test/github/middyjs/middy">
17
20
  <img src="https://snyk.io/test/github/middyjs/middy/badge.svg" alt="Known Vulnerabilities" data-canonical-src="https://snyk.io/test/github/middyjs/middy" style="max-width:100%;">
18
21
  </a>
19
- <a href="https://standardjs.com/">
20
- <img src="https://img.shields.io/badge/code_style-standard-brightgreen.svg" alt="Standard Code Style" style="max-width:100%;">
22
+ <a href="https://lgtm.com/projects/g/middyjs/middy/context:javascript">
23
+ <img src="https://img.shields.io/lgtm/grade/javascript/g/middyjs/middy.svg?logo=lgtm&logoWidth=18" alt="Language grade: JavaScript" style="max-width:100%;">
24
+ </a>
25
+ <a href="https://bestpractices.coreinfrastructure.org/projects/5280">
26
+ <img src="https://bestpractices.coreinfrastructure.org/projects/5280/badge" alt="Core Infrastructure Initiative (CII) Best Practices" style="max-width:100%;">
21
27
  </a>
28
+ <br/>
22
29
  <a href="https://gitter.im/middyjs/Lobby">
23
- <img src="https://badges.gitter.im/gitterHQ/gitter.svg" alt="Chat on Gitter" style="max-width:100%;">
30
+ <img src="https://badges.gitter.im/gitterHQ/gitter.svg" alt="Chat on Gitter" style="max-width:100%;">
31
+ </a>
32
+ <a href="https://stackoverflow.com/questions/tagged/middy?sort=Newest&uqlId=35052">
33
+ <img src="https://img.shields.io/badge/StackOverflow-[middy]-yellow" alt="Ask questions on StackOverflow" style="max-width:100%;">
24
34
  </a>
25
35
  </p>
26
36
  </div>
@@ -43,9 +53,9 @@ npm install --save @middy/do-not-wait-for-empty-event-loop
43
53
  By default the middleware sets the `callbackWaitsForEmptyEventLoop` property to `false` only in the `before` phase,
44
54
  meaning you can override it in handler to `true` if needed. You can set it in all steps with the options:
45
55
 
46
- - `runOnBefore` (defaults to `true`) - sets property before running your handler
47
- - `runOnAfter` (defaults to `false`)
48
- - `runOnError` (defaults to `false`)
56
+ - `runOnBefore` (boolean) (default `true`) - sets property before running your handler
57
+ - `runOnAfter` (boolean) (default `false`)
58
+ - `runOnError` (boolean) (default `false`)
49
59
 
50
60
 
51
61
  ## Sample usage
package/index.cjs ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.default=void 0;const defaults={runOnBefore:true,runOnAfter:false,runOnError:false};const doNotWaitForEmptyEventLoopMiddleware=(opts={})=>{const options={...defaults,...opts};const doNotWaitForEmptyEventLoop=async request=>{request.context.callbackWaitsForEmptyEventLoop=false};return{before:options.runOnBefore?doNotWaitForEmptyEventLoop:undefined,after:options.runOnAfter?doNotWaitForEmptyEventLoop:undefined,onError:options.runOnError?doNotWaitForEmptyEventLoop:undefined}};var _default=doNotWaitForEmptyEventLoopMiddleware;exports.default=_default
2
+
3
+ //# sourceMappingURL=index.cjs.map
package/index.js CHANGED
@@ -1,23 +1,3 @@
1
- const defaults = {
2
- runOnBefore: true,
3
- runOnAfter: false,
4
- runOnError: false
5
- };
1
+ const defaults={runOnBefore:true,runOnAfter:false,runOnError:false};const doNotWaitForEmptyEventLoopMiddleware=(opts={})=>{const options={...defaults,...opts};const doNotWaitForEmptyEventLoop=async request=>{request.context.callbackWaitsForEmptyEventLoop=false};return{before:options.runOnBefore?doNotWaitForEmptyEventLoop:undefined,after:options.runOnAfter?doNotWaitForEmptyEventLoop:undefined,onError:options.runOnError?doNotWaitForEmptyEventLoop:undefined}};export default doNotWaitForEmptyEventLoopMiddleware
6
2
 
7
- const doNotWaitForEmptyEventLoopMiddleware = (opts = {}) => {
8
- const options = { ...defaults,
9
- ...opts
10
- };
11
-
12
- const doNotWaitForEmptyEventLoop = async request => {
13
- request.context.callbackWaitsForEmptyEventLoop = false;
14
- };
15
-
16
- return {
17
- before: options.runOnBefore ? doNotWaitForEmptyEventLoop : undefined,
18
- after: options.runOnAfter ? doNotWaitForEmptyEventLoop : undefined,
19
- onError: options.runOnError ? doNotWaitForEmptyEventLoop : undefined
20
- };
21
- };
22
-
23
- export default doNotWaitForEmptyEventLoopMiddleware;
3
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@middy/do-not-wait-for-empty-event-loop",
3
- "version": "3.0.0-alpha.6",
3
+ "version": "3.0.0",
4
4
  "description": "Middleware for the middy framework that allows to easily disable the wait for empty event loop in a Lambda function",
5
5
  "type": "module",
6
6
  "engines": {
@@ -10,10 +10,17 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "exports": "./index.js",
13
+ "exports": {
14
+ ".": {
15
+ "import": "./index.js",
16
+ "require": "./index.cjs",
17
+ "types": "./index.d.ts"
18
+ }
19
+ },
14
20
  "types": "index.d.ts",
15
21
  "files": [
16
22
  "index.js",
23
+ "index.cjs",
17
24
  "index.d.ts"
18
25
  ],
19
26
  "scripts": {
@@ -44,10 +51,10 @@
44
51
  "bugs": {
45
52
  "url": "https://github.com/middyjs/middy/issues"
46
53
  },
47
- "homepage": "https://github.com/middyjs/middy#readme",
48
- "gitHead": "176660ed3e0716d6bfb635c77251b301e0e24720",
54
+ "homepage": "https://middy.js.org",
55
+ "gitHead": "01520fa8628a36c2f89e126cad656a16547ea0d6",
49
56
  "devDependencies": {
50
- "@middy/core": "^3.0.0-alpha.6",
57
+ "@middy/core": "^3.0.0",
51
58
  "@types/aws-lambda": "^8.10.76"
52
59
  }
53
60
  }