├── .dev.vars ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── package.json ├── src ├── form.html ├── html.d.ts └── index.ts ├── tsconfig.json └── wrangler.toml /.dev.vars: -------------------------------------------------------------------------------- 1 | WORKERLINKS_SECRET=mysecret -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["tamasfe.even-better-toml"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/package.json -------------------------------------------------------------------------------- /src/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/src/form.html -------------------------------------------------------------------------------- /src/html.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/src/html.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erisa/worker-links/HEAD/wrangler.toml --------------------------------------------------------------------------------