├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.js ├── package-lock.json └── package.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | *Issue #, if available:* 2 | 3 | *Description of changes:* 4 | 5 | 6 | By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/node,macos,visualstudiocode,vim 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,visualstudiocode,vim 3 | 4 | ### macOS ### 5 | # General 6 | .DS_Store 7 | .AppleDouble 8 | .LSOverride 9 | 10 | # Icon must end with two \r 11 | Icon 12 | 13 | # Thumbnails 14 | ._* 15 | 16 | # Files that might appear in the root of a volume 17 | .DocumentRevisions-V100 18 | .fseventsd 19 | .Spotlight-V100 20 | .TemporaryItems 21 | .Trashes 22 | .VolumeIcon.icns 23 | .com.apple.timemachine.donotpresent 24 | 25 | # Directories potentially created on remote AFP share 26 | .AppleDB 27 | .AppleDesktop 28 | Network Trash Folder 29 | Temporary Items 30 | .apdisk 31 | 32 | ### Node ### 33 | # Logs 34 | logs 35 | *.log 36 | npm-debug.log* 37 | yarn-debug.log* 38 | yarn-error.log* 39 | lerna-debug.log* 40 | 41 | # Diagnostic reports (https://nodejs.org/api/report.html) 42 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 43 | 44 | # Runtime data 45 | pids 46 | *.pid 47 | *.seed 48 | *.pid.lock 49 | 50 | # Directory for instrumented libs generated by jscoverage/JSCover 51 | lib-cov 52 | 53 | # Coverage directory used by tools like istanbul 54 | coverage 55 | *.lcov 56 | 57 | # nyc test coverage 58 | .nyc_output 59 | 60 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 61 | .grunt 62 | 63 | # Bower dependency directory (https://bower.io/) 64 | bower_components 65 | 66 | # node-waf configuration 67 | .lock-wscript 68 | 69 | # Compiled binary addons (https://nodejs.org/api/addons.html) 70 | build/Release 71 | 72 | # Dependency directories 73 | node_modules/ 74 | jspm_packages/ 75 | 76 | # TypeScript v1 declaration files 77 | typings/ 78 | 79 | # TypeScript cache 80 | *.tsbuildinfo 81 | 82 | # Optional npm cache directory 83 | .npm 84 | 85 | # Optional eslint cache 86 | .eslintcache 87 | 88 | # Microbundle cache 89 | .rpt2_cache/ 90 | .rts2_cache_cjs/ 91 | .rts2_cache_es/ 92 | .rts2_cache_umd/ 93 | 94 | # Optional REPL history 95 | .node_repl_history 96 | 97 | # Output of 'npm pack' 98 | *.tgz 99 | 100 | # Yarn Integrity file 101 | .yarn-integrity 102 | 103 | # dotenv environment variables file 104 | .env 105 | .env.test 106 | 107 | # parcel-bundler cache (https://parceljs.org/) 108 | .cache 109 | 110 | # Next.js build output 111 | .next 112 | 113 | # Nuxt.js build / generate output 114 | .nuxt 115 | dist 116 | 117 | # Gatsby files 118 | .cache/ 119 | # Comment in the public line in if your project uses Gatsby and not Next.js 120 | # https://nextjs.org/blog/next-9-1#public-directory-support 121 | # public 122 | 123 | # vuepress build output 124 | .vuepress/dist 125 | 126 | # Serverless directories 127 | .serverless/ 128 | 129 | # FuseBox cache 130 | .fusebox/ 131 | 132 | # DynamoDB Local files 133 | .dynamodb/ 134 | 135 | # TernJS port file 136 | .tern-port 137 | 138 | # Stores VSCode versions used for testing VSCode extensions 139 | .vscode-test 140 | 141 | ### Vim ### 142 | # Swap 143 | [._]*.s[a-v][a-z] 144 | !*.svg # comment out if you don't need vector files 145 | [._]*.sw[a-p] 146 | [._]s[a-rt-v][a-z] 147 | [._]ss[a-gi-z] 148 | [._]sw[a-p] 149 | 150 | # Session 151 | Session.vim 152 | Sessionx.vim 153 | 154 | # Temporary 155 | .netrwhist 156 | *~ 157 | # Auto-generated tag files 158 | tags 159 | # Persistent undo 160 | [._]*.un~ 161 | 162 | ### VisualStudioCode ### 163 | .vscode/* 164 | !.vscode/settings.json 165 | !.vscode/tasks.json 166 | !.vscode/launch.json 167 | !.vscode/extensions.json 168 | *.code-workspace 169 | 170 | ### VisualStudioCode Patch ### 171 | # Ignore all local history of files 172 | .history 173 | 174 | # End of https://www.toptal.com/developers/gitignore/api/node,macos,visualstudiocode,vim 175 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guidelines 2 | 3 | Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional 4 | documentation, we greatly value feedback and contributions from our community. 5 | 6 | Please read through this document before submitting any issues or pull requests to ensure we have all the necessary 7 | information to effectively respond to your bug report or contribution. 8 | 9 | 10 | ## Reporting Bugs/Feature Requests 11 | 12 | We welcome you to use the GitHub issue tracker to report bugs or suggest features. 13 | 14 | When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already 15 | reported the issue. Please try to include as much information as you can. Details like these are incredibly useful: 16 | 17 | * A reproducible test case or series of steps 18 | * The version of our code being used 19 | * Any modifications you've made relevant to the bug 20 | * Anything unusual about your environment or deployment 21 | 22 | 23 | ## Contributing via Pull Requests 24 | Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that: 25 | 26 | 1. You are working against the latest source on the *master* branch. 27 | 2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already. 28 | 3. You open an issue to discuss any significant work - we would hate for your time to be wasted. 29 | 30 | To send us a pull request, please: 31 | 32 | 1. Fork the repository. 33 | 2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change. 34 | 3. Ensure local tests pass. 35 | 4. Commit to your fork using clear commit messages. 36 | 5. Send us a pull request, answering any default questions in the pull request interface. 37 | 6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation. 38 | 39 | GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and 40 | [creating a pull request](https://help.github.com/articles/creating-a-pull-request/). 41 | 42 | 43 | ## Finding contributions to work on 44 | Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start. 45 | 46 | 47 | ## Code of Conduct 48 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 49 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 50 | opensource-codeofconduct@amazon.com with any additional questions or comments. 51 | 52 | 53 | ## Security issue notifications 54 | If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue. 55 | 56 | 57 | ## Licensing 58 | 59 | See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution. 60 | 61 | We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes. 62 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software is furnished to do so. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 10 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 11 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 12 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 13 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 14 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 15 | 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AWS Elastic Beanstalk Node.js Sample App 2 | 3 | This repository contains a sample Node.js web application built using [Express](https://expressjs.com/), meant to be used as part of the AWS DevOps Learning Path. 4 | 5 | ## Security 6 | 7 | See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information. 8 | 9 | ## License 10 | 11 | This library is licensed under the MIT-0 License. See the LICENSE file. 12 | 13 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const app = express(); 3 | const port = 8080; 4 | 5 | app.get('/', (req, res) => res.send('Hello World!')); 6 | 7 | app.listen(port); 8 | console.log(`App running on http://localhost:${port}`); 9 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aws-elastic-beanstalk-express-js-sample", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "version": "1.0.0", 9 | "license": "MIT-0", 10 | "dependencies": { 11 | "express": "^4.21.2" 12 | } 13 | }, 14 | "node_modules/accepts": { 15 | "version": "1.3.8", 16 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 17 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 18 | "dependencies": { 19 | "mime-types": "~2.1.34", 20 | "negotiator": "0.6.3" 21 | }, 22 | "engines": { 23 | "node": ">= 0.6" 24 | } 25 | }, 26 | "node_modules/array-flatten": { 27 | "version": "1.1.1", 28 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 29 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 30 | }, 31 | "node_modules/body-parser": { 32 | "version": "1.20.3", 33 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", 34 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", 35 | "license": "MIT", 36 | "dependencies": { 37 | "bytes": "3.1.2", 38 | "content-type": "~1.0.5", 39 | "debug": "2.6.9", 40 | "depd": "2.0.0", 41 | "destroy": "1.2.0", 42 | "http-errors": "2.0.0", 43 | "iconv-lite": "0.4.24", 44 | "on-finished": "2.4.1", 45 | "qs": "6.13.0", 46 | "raw-body": "2.5.2", 47 | "type-is": "~1.6.18", 48 | "unpipe": "1.0.0" 49 | }, 50 | "engines": { 51 | "node": ">= 0.8", 52 | "npm": "1.2.8000 || >= 1.4.16" 53 | } 54 | }, 55 | "node_modules/bytes": { 56 | "version": "3.1.2", 57 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 58 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 59 | "license": "MIT", 60 | "engines": { 61 | "node": ">= 0.8" 62 | } 63 | }, 64 | "node_modules/call-bind-apply-helpers": { 65 | "version": "1.0.2", 66 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 67 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 68 | "license": "MIT", 69 | "dependencies": { 70 | "es-errors": "^1.3.0", 71 | "function-bind": "^1.1.2" 72 | }, 73 | "engines": { 74 | "node": ">= 0.4" 75 | } 76 | }, 77 | "node_modules/call-bound": { 78 | "version": "1.0.4", 79 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 80 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 81 | "license": "MIT", 82 | "dependencies": { 83 | "call-bind-apply-helpers": "^1.0.2", 84 | "get-intrinsic": "^1.3.0" 85 | }, 86 | "engines": { 87 | "node": ">= 0.4" 88 | }, 89 | "funding": { 90 | "url": "https://github.com/sponsors/ljharb" 91 | } 92 | }, 93 | "node_modules/content-disposition": { 94 | "version": "0.5.4", 95 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 96 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 97 | "dependencies": { 98 | "safe-buffer": "5.2.1" 99 | }, 100 | "engines": { 101 | "node": ">= 0.6" 102 | } 103 | }, 104 | "node_modules/content-type": { 105 | "version": "1.0.5", 106 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 107 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 108 | "license": "MIT", 109 | "engines": { 110 | "node": ">= 0.6" 111 | } 112 | }, 113 | "node_modules/cookie": { 114 | "version": "0.7.1", 115 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", 116 | "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", 117 | "license": "MIT", 118 | "engines": { 119 | "node": ">= 0.6" 120 | } 121 | }, 122 | "node_modules/cookie-signature": { 123 | "version": "1.0.6", 124 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 125 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 126 | }, 127 | "node_modules/debug": { 128 | "version": "2.6.9", 129 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 130 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 131 | "dependencies": { 132 | "ms": "2.0.0" 133 | } 134 | }, 135 | "node_modules/depd": { 136 | "version": "2.0.0", 137 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 138 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 139 | "license": "MIT", 140 | "engines": { 141 | "node": ">= 0.8" 142 | } 143 | }, 144 | "node_modules/destroy": { 145 | "version": "1.2.0", 146 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 147 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 148 | "license": "MIT", 149 | "engines": { 150 | "node": ">= 0.8", 151 | "npm": "1.2.8000 || >= 1.4.16" 152 | } 153 | }, 154 | "node_modules/dunder-proto": { 155 | "version": "1.0.1", 156 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 157 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 158 | "license": "MIT", 159 | "dependencies": { 160 | "call-bind-apply-helpers": "^1.0.1", 161 | "es-errors": "^1.3.0", 162 | "gopd": "^1.2.0" 163 | }, 164 | "engines": { 165 | "node": ">= 0.4" 166 | } 167 | }, 168 | "node_modules/ee-first": { 169 | "version": "1.1.1", 170 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 171 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 172 | }, 173 | "node_modules/encodeurl": { 174 | "version": "1.0.2", 175 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 176 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 177 | "engines": { 178 | "node": ">= 0.8" 179 | } 180 | }, 181 | "node_modules/es-define-property": { 182 | "version": "1.0.1", 183 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 184 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 185 | "license": "MIT", 186 | "engines": { 187 | "node": ">= 0.4" 188 | } 189 | }, 190 | "node_modules/es-errors": { 191 | "version": "1.3.0", 192 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 193 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 194 | "license": "MIT", 195 | "engines": { 196 | "node": ">= 0.4" 197 | } 198 | }, 199 | "node_modules/es-object-atoms": { 200 | "version": "1.1.1", 201 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 202 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 203 | "license": "MIT", 204 | "dependencies": { 205 | "es-errors": "^1.3.0" 206 | }, 207 | "engines": { 208 | "node": ">= 0.4" 209 | } 210 | }, 211 | "node_modules/escape-html": { 212 | "version": "1.0.3", 213 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 214 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 215 | }, 216 | "node_modules/etag": { 217 | "version": "1.8.1", 218 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 219 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 220 | "license": "MIT", 221 | "engines": { 222 | "node": ">= 0.6" 223 | } 224 | }, 225 | "node_modules/express": { 226 | "version": "4.21.2", 227 | "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", 228 | "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", 229 | "license": "MIT", 230 | "dependencies": { 231 | "accepts": "~1.3.8", 232 | "array-flatten": "1.1.1", 233 | "body-parser": "1.20.3", 234 | "content-disposition": "0.5.4", 235 | "content-type": "~1.0.4", 236 | "cookie": "0.7.1", 237 | "cookie-signature": "1.0.6", 238 | "debug": "2.6.9", 239 | "depd": "2.0.0", 240 | "encodeurl": "~2.0.0", 241 | "escape-html": "~1.0.3", 242 | "etag": "~1.8.1", 243 | "finalhandler": "1.3.1", 244 | "fresh": "0.5.2", 245 | "http-errors": "2.0.0", 246 | "merge-descriptors": "1.0.3", 247 | "methods": "~1.1.2", 248 | "on-finished": "2.4.1", 249 | "parseurl": "~1.3.3", 250 | "path-to-regexp": "0.1.12", 251 | "proxy-addr": "~2.0.7", 252 | "qs": "6.13.0", 253 | "range-parser": "~1.2.1", 254 | "safe-buffer": "5.2.1", 255 | "send": "0.19.0", 256 | "serve-static": "1.16.2", 257 | "setprototypeof": "1.2.0", 258 | "statuses": "2.0.1", 259 | "type-is": "~1.6.18", 260 | "utils-merge": "1.0.1", 261 | "vary": "~1.1.2" 262 | }, 263 | "engines": { 264 | "node": ">= 0.10.0" 265 | }, 266 | "funding": { 267 | "type": "opencollective", 268 | "url": "https://opencollective.com/express" 269 | } 270 | }, 271 | "node_modules/express/node_modules/encodeurl": { 272 | "version": "2.0.0", 273 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 274 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 275 | "license": "MIT", 276 | "engines": { 277 | "node": ">= 0.8" 278 | } 279 | }, 280 | "node_modules/finalhandler": { 281 | "version": "1.3.1", 282 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", 283 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", 284 | "license": "MIT", 285 | "dependencies": { 286 | "debug": "2.6.9", 287 | "encodeurl": "~2.0.0", 288 | "escape-html": "~1.0.3", 289 | "on-finished": "2.4.1", 290 | "parseurl": "~1.3.3", 291 | "statuses": "2.0.1", 292 | "unpipe": "~1.0.0" 293 | }, 294 | "engines": { 295 | "node": ">= 0.8" 296 | } 297 | }, 298 | "node_modules/finalhandler/node_modules/encodeurl": { 299 | "version": "2.0.0", 300 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 301 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 302 | "license": "MIT", 303 | "engines": { 304 | "node": ">= 0.8" 305 | } 306 | }, 307 | "node_modules/forwarded": { 308 | "version": "0.2.0", 309 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 310 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 311 | "engines": { 312 | "node": ">= 0.6" 313 | } 314 | }, 315 | "node_modules/fresh": { 316 | "version": "0.5.2", 317 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 318 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 319 | "license": "MIT", 320 | "engines": { 321 | "node": ">= 0.6" 322 | } 323 | }, 324 | "node_modules/function-bind": { 325 | "version": "1.1.2", 326 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 327 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 328 | "license": "MIT", 329 | "funding": { 330 | "url": "https://github.com/sponsors/ljharb" 331 | } 332 | }, 333 | "node_modules/get-intrinsic": { 334 | "version": "1.3.0", 335 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 336 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 337 | "license": "MIT", 338 | "dependencies": { 339 | "call-bind-apply-helpers": "^1.0.2", 340 | "es-define-property": "^1.0.1", 341 | "es-errors": "^1.3.0", 342 | "es-object-atoms": "^1.1.1", 343 | "function-bind": "^1.1.2", 344 | "get-proto": "^1.0.1", 345 | "gopd": "^1.2.0", 346 | "has-symbols": "^1.1.0", 347 | "hasown": "^2.0.2", 348 | "math-intrinsics": "^1.1.0" 349 | }, 350 | "engines": { 351 | "node": ">= 0.4" 352 | }, 353 | "funding": { 354 | "url": "https://github.com/sponsors/ljharb" 355 | } 356 | }, 357 | "node_modules/get-proto": { 358 | "version": "1.0.1", 359 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 360 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 361 | "license": "MIT", 362 | "dependencies": { 363 | "dunder-proto": "^1.0.1", 364 | "es-object-atoms": "^1.0.0" 365 | }, 366 | "engines": { 367 | "node": ">= 0.4" 368 | } 369 | }, 370 | "node_modules/gopd": { 371 | "version": "1.2.0", 372 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 373 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 374 | "license": "MIT", 375 | "engines": { 376 | "node": ">= 0.4" 377 | }, 378 | "funding": { 379 | "url": "https://github.com/sponsors/ljharb" 380 | } 381 | }, 382 | "node_modules/has-symbols": { 383 | "version": "1.1.0", 384 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 385 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 386 | "license": "MIT", 387 | "engines": { 388 | "node": ">= 0.4" 389 | }, 390 | "funding": { 391 | "url": "https://github.com/sponsors/ljharb" 392 | } 393 | }, 394 | "node_modules/hasown": { 395 | "version": "2.0.2", 396 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 397 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 398 | "license": "MIT", 399 | "dependencies": { 400 | "function-bind": "^1.1.2" 401 | }, 402 | "engines": { 403 | "node": ">= 0.4" 404 | } 405 | }, 406 | "node_modules/http-errors": { 407 | "version": "2.0.0", 408 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 409 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 410 | "license": "MIT", 411 | "dependencies": { 412 | "depd": "2.0.0", 413 | "inherits": "2.0.4", 414 | "setprototypeof": "1.2.0", 415 | "statuses": "2.0.1", 416 | "toidentifier": "1.0.1" 417 | }, 418 | "engines": { 419 | "node": ">= 0.8" 420 | } 421 | }, 422 | "node_modules/iconv-lite": { 423 | "version": "0.4.24", 424 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 425 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 426 | "license": "MIT", 427 | "dependencies": { 428 | "safer-buffer": ">= 2.1.2 < 3" 429 | }, 430 | "engines": { 431 | "node": ">=0.10.0" 432 | } 433 | }, 434 | "node_modules/inherits": { 435 | "version": "2.0.4", 436 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 437 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 438 | "license": "ISC" 439 | }, 440 | "node_modules/ipaddr.js": { 441 | "version": "1.9.1", 442 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 443 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 444 | "engines": { 445 | "node": ">= 0.10" 446 | } 447 | }, 448 | "node_modules/math-intrinsics": { 449 | "version": "1.1.0", 450 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 451 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 452 | "license": "MIT", 453 | "engines": { 454 | "node": ">= 0.4" 455 | } 456 | }, 457 | "node_modules/media-typer": { 458 | "version": "0.3.0", 459 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 460 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 461 | "license": "MIT", 462 | "engines": { 463 | "node": ">= 0.6" 464 | } 465 | }, 466 | "node_modules/merge-descriptors": { 467 | "version": "1.0.3", 468 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", 469 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", 470 | "license": "MIT", 471 | "funding": { 472 | "url": "https://github.com/sponsors/sindresorhus" 473 | } 474 | }, 475 | "node_modules/methods": { 476 | "version": "1.1.2", 477 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 478 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 479 | "engines": { 480 | "node": ">= 0.6" 481 | } 482 | }, 483 | "node_modules/mime": { 484 | "version": "1.6.0", 485 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 486 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 487 | "license": "MIT", 488 | "bin": { 489 | "mime": "cli.js" 490 | }, 491 | "engines": { 492 | "node": ">=4" 493 | } 494 | }, 495 | "node_modules/mime-db": { 496 | "version": "1.52.0", 497 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 498 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 499 | "engines": { 500 | "node": ">= 0.6" 501 | } 502 | }, 503 | "node_modules/mime-types": { 504 | "version": "2.1.35", 505 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 506 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 507 | "dependencies": { 508 | "mime-db": "1.52.0" 509 | }, 510 | "engines": { 511 | "node": ">= 0.6" 512 | } 513 | }, 514 | "node_modules/ms": { 515 | "version": "2.0.0", 516 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 517 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 518 | }, 519 | "node_modules/negotiator": { 520 | "version": "0.6.3", 521 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 522 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 523 | "engines": { 524 | "node": ">= 0.6" 525 | } 526 | }, 527 | "node_modules/object-inspect": { 528 | "version": "1.13.4", 529 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 530 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 531 | "license": "MIT", 532 | "engines": { 533 | "node": ">= 0.4" 534 | }, 535 | "funding": { 536 | "url": "https://github.com/sponsors/ljharb" 537 | } 538 | }, 539 | "node_modules/on-finished": { 540 | "version": "2.4.1", 541 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 542 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 543 | "dependencies": { 544 | "ee-first": "1.1.1" 545 | }, 546 | "engines": { 547 | "node": ">= 0.8" 548 | } 549 | }, 550 | "node_modules/parseurl": { 551 | "version": "1.3.3", 552 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 553 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 554 | "license": "MIT", 555 | "engines": { 556 | "node": ">= 0.8" 557 | } 558 | }, 559 | "node_modules/path-to-regexp": { 560 | "version": "0.1.12", 561 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", 562 | "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", 563 | "license": "MIT" 564 | }, 565 | "node_modules/proxy-addr": { 566 | "version": "2.0.7", 567 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 568 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 569 | "dependencies": { 570 | "forwarded": "0.2.0", 571 | "ipaddr.js": "1.9.1" 572 | }, 573 | "engines": { 574 | "node": ">= 0.10" 575 | } 576 | }, 577 | "node_modules/qs": { 578 | "version": "6.13.0", 579 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", 580 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", 581 | "license": "BSD-3-Clause", 582 | "dependencies": { 583 | "side-channel": "^1.0.6" 584 | }, 585 | "engines": { 586 | "node": ">=0.6" 587 | }, 588 | "funding": { 589 | "url": "https://github.com/sponsors/ljharb" 590 | } 591 | }, 592 | "node_modules/range-parser": { 593 | "version": "1.2.1", 594 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 595 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 596 | "license": "MIT", 597 | "engines": { 598 | "node": ">= 0.6" 599 | } 600 | }, 601 | "node_modules/raw-body": { 602 | "version": "2.5.2", 603 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 604 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 605 | "license": "MIT", 606 | "dependencies": { 607 | "bytes": "3.1.2", 608 | "http-errors": "2.0.0", 609 | "iconv-lite": "0.4.24", 610 | "unpipe": "1.0.0" 611 | }, 612 | "engines": { 613 | "node": ">= 0.8" 614 | } 615 | }, 616 | "node_modules/safe-buffer": { 617 | "version": "5.2.1", 618 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 619 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 620 | "funding": [ 621 | { 622 | "type": "github", 623 | "url": "https://github.com/sponsors/feross" 624 | }, 625 | { 626 | "type": "patreon", 627 | "url": "https://www.patreon.com/feross" 628 | }, 629 | { 630 | "type": "consulting", 631 | "url": "https://feross.org/support" 632 | } 633 | ] 634 | }, 635 | "node_modules/safer-buffer": { 636 | "version": "2.1.2", 637 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 638 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 639 | "license": "MIT" 640 | }, 641 | "node_modules/send": { 642 | "version": "0.19.0", 643 | "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", 644 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", 645 | "license": "MIT", 646 | "dependencies": { 647 | "debug": "2.6.9", 648 | "depd": "2.0.0", 649 | "destroy": "1.2.0", 650 | "encodeurl": "~1.0.2", 651 | "escape-html": "~1.0.3", 652 | "etag": "~1.8.1", 653 | "fresh": "0.5.2", 654 | "http-errors": "2.0.0", 655 | "mime": "1.6.0", 656 | "ms": "2.1.3", 657 | "on-finished": "2.4.1", 658 | "range-parser": "~1.2.1", 659 | "statuses": "2.0.1" 660 | }, 661 | "engines": { 662 | "node": ">= 0.8.0" 663 | } 664 | }, 665 | "node_modules/send/node_modules/ms": { 666 | "version": "2.1.3", 667 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 668 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 669 | "license": "MIT" 670 | }, 671 | "node_modules/serve-static": { 672 | "version": "1.16.2", 673 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", 674 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", 675 | "license": "MIT", 676 | "dependencies": { 677 | "encodeurl": "~2.0.0", 678 | "escape-html": "~1.0.3", 679 | "parseurl": "~1.3.3", 680 | "send": "0.19.0" 681 | }, 682 | "engines": { 683 | "node": ">= 0.8.0" 684 | } 685 | }, 686 | "node_modules/serve-static/node_modules/encodeurl": { 687 | "version": "2.0.0", 688 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 689 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 690 | "license": "MIT", 691 | "engines": { 692 | "node": ">= 0.8" 693 | } 694 | }, 695 | "node_modules/setprototypeof": { 696 | "version": "1.2.0", 697 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 698 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 699 | "license": "ISC" 700 | }, 701 | "node_modules/side-channel": { 702 | "version": "1.1.0", 703 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 704 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 705 | "license": "MIT", 706 | "dependencies": { 707 | "es-errors": "^1.3.0", 708 | "object-inspect": "^1.13.3", 709 | "side-channel-list": "^1.0.0", 710 | "side-channel-map": "^1.0.1", 711 | "side-channel-weakmap": "^1.0.2" 712 | }, 713 | "engines": { 714 | "node": ">= 0.4" 715 | }, 716 | "funding": { 717 | "url": "https://github.com/sponsors/ljharb" 718 | } 719 | }, 720 | "node_modules/side-channel-list": { 721 | "version": "1.0.0", 722 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 723 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 724 | "license": "MIT", 725 | "dependencies": { 726 | "es-errors": "^1.3.0", 727 | "object-inspect": "^1.13.3" 728 | }, 729 | "engines": { 730 | "node": ">= 0.4" 731 | }, 732 | "funding": { 733 | "url": "https://github.com/sponsors/ljharb" 734 | } 735 | }, 736 | "node_modules/side-channel-map": { 737 | "version": "1.0.1", 738 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 739 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 740 | "license": "MIT", 741 | "dependencies": { 742 | "call-bound": "^1.0.2", 743 | "es-errors": "^1.3.0", 744 | "get-intrinsic": "^1.2.5", 745 | "object-inspect": "^1.13.3" 746 | }, 747 | "engines": { 748 | "node": ">= 0.4" 749 | }, 750 | "funding": { 751 | "url": "https://github.com/sponsors/ljharb" 752 | } 753 | }, 754 | "node_modules/side-channel-weakmap": { 755 | "version": "1.0.2", 756 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 757 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 758 | "license": "MIT", 759 | "dependencies": { 760 | "call-bound": "^1.0.2", 761 | "es-errors": "^1.3.0", 762 | "get-intrinsic": "^1.2.5", 763 | "object-inspect": "^1.13.3", 764 | "side-channel-map": "^1.0.1" 765 | }, 766 | "engines": { 767 | "node": ">= 0.4" 768 | }, 769 | "funding": { 770 | "url": "https://github.com/sponsors/ljharb" 771 | } 772 | }, 773 | "node_modules/statuses": { 774 | "version": "2.0.1", 775 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 776 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 777 | "engines": { 778 | "node": ">= 0.8" 779 | } 780 | }, 781 | "node_modules/toidentifier": { 782 | "version": "1.0.1", 783 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 784 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 785 | "license": "MIT", 786 | "engines": { 787 | "node": ">=0.6" 788 | } 789 | }, 790 | "node_modules/type-is": { 791 | "version": "1.6.18", 792 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 793 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 794 | "license": "MIT", 795 | "dependencies": { 796 | "media-typer": "0.3.0", 797 | "mime-types": "~2.1.24" 798 | }, 799 | "engines": { 800 | "node": ">= 0.6" 801 | } 802 | }, 803 | "node_modules/unpipe": { 804 | "version": "1.0.0", 805 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 806 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 807 | "engines": { 808 | "node": ">= 0.8" 809 | } 810 | }, 811 | "node_modules/utils-merge": { 812 | "version": "1.0.1", 813 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 814 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 815 | "engines": { 816 | "node": ">= 0.4.0" 817 | } 818 | }, 819 | "node_modules/vary": { 820 | "version": "1.1.2", 821 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 822 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 823 | "engines": { 824 | "node": ">= 0.8" 825 | } 826 | } 827 | } 828 | } 829 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aws-elastic-beanstalk-express-js-sample", 3 | "version": "1.0.0", 4 | "description": "Sample Node.js (Express) app for AWS Elastic Beanstalk", 5 | "main": "app.js", 6 | "scripts": { 7 | "start": "node app.js" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/aws-samples/aws-elastic-beanstalk-express-js-sample.git" 12 | }, 13 | "license": "MIT-0", 14 | "dependencies": { 15 | "express": "^4.21.2" 16 | } 17 | } 18 | --------------------------------------------------------------------------------