gitextract_h06eczrt/ ├── .github/ │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── .npmrc ├── .yarnrc ├── LICENSE ├── errors/ │ ├── invalid-entry.md │ ├── invalid-package-json.md │ ├── invalid-port-socket.md │ ├── invalid-server-port.md │ ├── invalid-socket.md │ ├── no-export.md │ ├── path-missing.md │ └── path-not-existent.md ├── examples/ │ ├── external-api-call/ │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── json-body-parsing/ │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── socket.io-chat-app/ │ │ ├── README.md │ │ ├── index.html │ │ ├── index.js │ │ ├── package.json │ │ └── websocket-server.js │ ├── urlencoded-body-parsing/ │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── with-graphql-request/ │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── with-https/ │ ├── README.md │ ├── index.js │ └── package.json ├── lerna.json ├── package.json ├── packages/ │ └── micro/ │ ├── .eslintrc.js │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── bin/ │ │ │ └── micro.ts │ │ └── lib/ │ │ ├── error.ts │ │ ├── handler.ts │ │ ├── index.ts │ │ └── parse-endpoint.ts │ ├── tsconfig.json │ └── types/ │ └── src/ │ ├── bin/ │ │ └── micro.d.ts │ └── lib/ │ ├── error.d.ts │ ├── handler.d.ts │ ├── index.d.ts │ └── parse-endpoint.d.ts └── test/ ├── .eslintrc.js ├── package.json ├── suite/ │ ├── handler.ts │ ├── index.ts │ └── parse-endpoint.ts └── tsconfig.json