├── .editorconfig ├── .gitignore ├── README.md ├── index.ts ├── package.json ├── src └── graceful-shutdown-manager.ts ├── test └── index.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | dist/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/package.json -------------------------------------------------------------------------------- /src/graceful-shutdown-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/src/graceful-shutdown-manager.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-moebius/http-graceful-shutdown/HEAD/yarn.lock --------------------------------------------------------------------------------