├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── prettier.config.js ├── src ├── filerouterscanner.test.ts ├── filerouterscanner.ts ├── index.ts ├── routegenerator.test.ts └── routegenerator.ts ├── tsconfig.json └── vitest.config.js /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/filerouterscanner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/src/filerouterscanner.test.ts -------------------------------------------------------------------------------- /src/filerouterscanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/src/filerouterscanner.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/routegenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/src/routegenerator.test.ts -------------------------------------------------------------------------------- /src/routegenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/src/routegenerator.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisjt/hono-file-router/HEAD/vitest.config.js --------------------------------------------------------------------------------