├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── deno.json ├── examples ├── package.json └── workers │ ├── basic-module │ └── index.ts │ ├── basic │ └── index.ts │ └── logflare │ └── index.ts ├── lib └── mod.ts ├── license ├── npm └── package.json ├── readme.md └── scripts └── build.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/deno.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/workers/basic-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/examples/workers/basic-module/index.ts -------------------------------------------------------------------------------- /examples/workers/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/examples/workers/basic/index.ts -------------------------------------------------------------------------------- /examples/workers/logflare/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/examples/workers/logflare/index.ts -------------------------------------------------------------------------------- /lib/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/lib/mod.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/license -------------------------------------------------------------------------------- /npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/npm/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraisr/workers-logger/HEAD/scripts/build.ts --------------------------------------------------------------------------------