├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── gobal.d.ts ├── package.json ├── src ├── index.ts └── worker.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/README.md -------------------------------------------------------------------------------- /gobal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/gobal.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { createEventHandler } from './worker'; 2 | -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/src/worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderberkein/remix-cloudflare-module-workers/HEAD/tsconfig.json --------------------------------------------------------------------------------