├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── config.capnp ├── package.json ├── src ├── create.ts ├── index.ts └── redirect.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | kv/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/README.md -------------------------------------------------------------------------------- /config.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/config.capnp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/package.json -------------------------------------------------------------------------------- /src/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/src/create.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/src/redirect.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalshyDev/workerd-example/HEAD/tsconfig.json --------------------------------------------------------------------------------