├── .clang-format ├── .compodocrc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npm-upgrade.json ├── .npmignore ├── .prettierrc.js ├── LICENSE ├── Makefile ├── README.md ├── gulpfile.js ├── package.json ├── spec ├── jasmine-runner.js └── support │ └── jasmine.json ├── src └── asyncctx │ ├── AsynchronousLocalStorage.ts │ ├── ContinuationLocalStorage.ts │ ├── index.ts │ └── spec │ ├── asynchronous.spec.ts │ ├── continuation.spec.ts │ └── readme.spec.ts ├── test ├── promise-exe-promise.js └── promise-then-promise.js ├── tsconfig.json └── typedoc.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.clang-format -------------------------------------------------------------------------------- /.compodocrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.compodocrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | .nyc_output 5 | tmp 6 | docs 7 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.gitignore -------------------------------------------------------------------------------- /.npm-upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.npm-upgrade.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/package.json -------------------------------------------------------------------------------- /spec/jasmine-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/spec/jasmine-runner.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/asyncctx/AsynchronousLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/src/asyncctx/AsynchronousLocalStorage.ts -------------------------------------------------------------------------------- /src/asyncctx/ContinuationLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/src/asyncctx/ContinuationLocalStorage.ts -------------------------------------------------------------------------------- /src/asyncctx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/src/asyncctx/index.ts -------------------------------------------------------------------------------- /src/asyncctx/spec/asynchronous.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/src/asyncctx/spec/asynchronous.spec.ts -------------------------------------------------------------------------------- /src/asyncctx/spec/continuation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/src/asyncctx/spec/continuation.spec.ts -------------------------------------------------------------------------------- /src/asyncctx/spec/readme.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/src/asyncctx/spec/readme.spec.ts -------------------------------------------------------------------------------- /test/promise-exe-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/test/promise-exe-promise.js -------------------------------------------------------------------------------- /test/promise-then-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/test/promise-then-promise.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gms1/node-async-context/HEAD/typedoc.json --------------------------------------------------------------------------------