├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── scorecard.yml ├── .gitignore ├── HISTORY.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── layer.js └── route.js ├── package.json ├── scripts └── version-history.js └── test ├── auto-head.js ├── auto-options.js ├── fqdn-url.js ├── param.js ├── req.params.js ├── route.js ├── router.js └── support └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 29a69f3cf7cb5acbdde0a9151b885d46423b0c72 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/index.js -------------------------------------------------------------------------------- /lib/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/lib/layer.js -------------------------------------------------------------------------------- /lib/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/lib/route.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/package.json -------------------------------------------------------------------------------- /scripts/version-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/scripts/version-history.js -------------------------------------------------------------------------------- /test/auto-head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/auto-head.js -------------------------------------------------------------------------------- /test/auto-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/auto-options.js -------------------------------------------------------------------------------- /test/fqdn-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/fqdn-url.js -------------------------------------------------------------------------------- /test/param.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/param.js -------------------------------------------------------------------------------- /test/req.params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/req.params.js -------------------------------------------------------------------------------- /test/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/route.js -------------------------------------------------------------------------------- /test/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/router.js -------------------------------------------------------------------------------- /test/support/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/router/HEAD/test/support/utils.js --------------------------------------------------------------------------------