├── .gitignore ├── LICENSE ├── index.ts ├── package.json ├── readme.md ├── sh └── push-new-version.js ├── src ├── config-internal.ts ├── config.ts ├── core.ts ├── durafetch-do.ts ├── log.ts └── util.ts └── test ├── worker-1 ├── .dev.vars ├── package-lock.json ├── package.json ├── readme.md ├── sh │ ├── durafetch-client.sh │ ├── durafetch-config.json │ ├── logs.sh │ ├── publish.sh │ └── start-dev-server.sh ├── src │ ├── durable_object_a.ts │ ├── durafetch-with-config.ts │ └── index.ts ├── tsconfig.json └── wrangler.toml └── worker-2 ├── .dev.vars ├── package-lock.json ├── package.json ├── readme.md ├── sh ├── logs.sh ├── publish.sh └── start-dev-server.sh ├── src ├── durable_object_a.ts ├── durafetch-with-config.ts └── index.ts ├── tsconfig.json └── wrangler.toml /.gitignore: -------------------------------------------------------------------------------- 1 | test/worker-1/sh/del/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/LICENSE -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/readme.md -------------------------------------------------------------------------------- /sh/push-new-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/sh/push-new-version.js -------------------------------------------------------------------------------- /src/config-internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/src/config-internal.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/durafetch-do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/src/durafetch-do.ts -------------------------------------------------------------------------------- /src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/src/log.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/worker-1/.dev.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/.dev.vars -------------------------------------------------------------------------------- /test/worker-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/package-lock.json -------------------------------------------------------------------------------- /test/worker-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/package.json -------------------------------------------------------------------------------- /test/worker-1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/readme.md -------------------------------------------------------------------------------- /test/worker-1/sh/durafetch-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/sh/durafetch-client.sh -------------------------------------------------------------------------------- /test/worker-1/sh/durafetch-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/sh/durafetch-config.json -------------------------------------------------------------------------------- /test/worker-1/sh/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/sh/logs.sh -------------------------------------------------------------------------------- /test/worker-1/sh/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/sh/publish.sh -------------------------------------------------------------------------------- /test/worker-1/sh/start-dev-server.sh: -------------------------------------------------------------------------------- 1 | wrangler dev src/index.ts --experimental-local --port 8720 -------------------------------------------------------------------------------- /test/worker-1/src/durable_object_a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/src/durable_object_a.ts -------------------------------------------------------------------------------- /test/worker-1/src/durafetch-with-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/src/durafetch-with-config.ts -------------------------------------------------------------------------------- /test/worker-1/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/src/index.ts -------------------------------------------------------------------------------- /test/worker-1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/tsconfig.json -------------------------------------------------------------------------------- /test/worker-1/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-1/wrangler.toml -------------------------------------------------------------------------------- /test/worker-2/.dev.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/.dev.vars -------------------------------------------------------------------------------- /test/worker-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/package-lock.json -------------------------------------------------------------------------------- /test/worker-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/package.json -------------------------------------------------------------------------------- /test/worker-2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/readme.md -------------------------------------------------------------------------------- /test/worker-2/sh/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/sh/logs.sh -------------------------------------------------------------------------------- /test/worker-2/sh/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/sh/publish.sh -------------------------------------------------------------------------------- /test/worker-2/sh/start-dev-server.sh: -------------------------------------------------------------------------------- 1 | wrangler dev src/index.ts --experimental-local --port 8787 -------------------------------------------------------------------------------- /test/worker-2/src/durable_object_a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/src/durable_object_a.ts -------------------------------------------------------------------------------- /test/worker-2/src/durafetch-with-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/src/durafetch-with-config.ts -------------------------------------------------------------------------------- /test/worker-2/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/src/index.ts -------------------------------------------------------------------------------- /test/worker-2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/tsconfig.json -------------------------------------------------------------------------------- /test/worker-2/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emadda/durafetch-server/HEAD/test/worker-2/wrangler.toml --------------------------------------------------------------------------------