├── .github ├── dependabot.yml ├── funding.yml ├── release.yml └── workflows │ ├── bump.yml │ ├── ci.yml │ ├── dependabot.yml │ ├── docs.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── bun.lockb ├── bunfig.toml ├── package.json ├── scripts └── exports.ts ├── src ├── cloudflare.ts ├── handler.ts ├── i18next.ts ├── security.ts ├── session.ts ├── trailing-slash.ts └── typed-env.ts ├── test ├── cloudflare.test.ts ├── handler.test.ts ├── security.test.ts ├── session.test.ts ├── setup.ts └── trailing-slash.test.ts ├── tsconfig.json └── typedoc.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: sergiodxa 2 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/bun.lockb -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [test] 2 | preload = "./test/setup.ts" 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/package.json -------------------------------------------------------------------------------- /scripts/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/scripts/exports.ts -------------------------------------------------------------------------------- /src/cloudflare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/cloudflare.ts -------------------------------------------------------------------------------- /src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/handler.ts -------------------------------------------------------------------------------- /src/i18next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/i18next.ts -------------------------------------------------------------------------------- /src/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/security.ts -------------------------------------------------------------------------------- /src/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/session.ts -------------------------------------------------------------------------------- /src/trailing-slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/trailing-slash.ts -------------------------------------------------------------------------------- /src/typed-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/src/typed-env.ts -------------------------------------------------------------------------------- /test/cloudflare.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/test/cloudflare.test.ts -------------------------------------------------------------------------------- /test/handler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/test/handler.test.ts -------------------------------------------------------------------------------- /test/security.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/test/security.test.ts -------------------------------------------------------------------------------- /test/session.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/test/session.test.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/trailing-slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/test/trailing-slash.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-hono/HEAD/typedoc.json --------------------------------------------------------------------------------