gitextract_in6ieqkr/ ├── .babelrc.js ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ └── azure-function.md ├── examples/ │ ├── all-routes/ │ │ ├── function.json │ │ └── index.js │ ├── basic/ │ │ ├── function.json │ │ └── index.js │ └── basic-module/ │ ├── function.json │ └── index.js ├── package.json ├── src/ │ ├── ExpressAdapter.js │ ├── IncomingMessage.js │ ├── OutgoingMessage.js │ ├── createAzureFunctionHandler.js │ ├── index.js │ └── statusCodes.js └── test/ ├── ExpressAdapter.test.js ├── IncomingMessage.test.js ├── OutgoingMessage.test.js ├── expressIntegration.test.js └── main.test.js