├── .github └── workflows │ └── ci.yml ├── .vscode └── settings.json ├── LICENSE ├── examples ├── 01_hello_world.ts ├── 01_hello_world.tsx ├── 02_custom_404.ts ├── 03_route_params.ts └── 04_serve_static_assets.ts ├── mod.ts ├── readme.md └── test.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/LICENSE -------------------------------------------------------------------------------- /examples/01_hello_world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/examples/01_hello_world.ts -------------------------------------------------------------------------------- /examples/01_hello_world.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/examples/01_hello_world.tsx -------------------------------------------------------------------------------- /examples/02_custom_404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/examples/02_custom_404.ts -------------------------------------------------------------------------------- /examples/03_route_params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/examples/03_route_params.ts -------------------------------------------------------------------------------- /examples/04_serve_static_assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/examples/04_serve_static_assets.ts -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/mod.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/readme.md -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyarohith/sift/HEAD/test.ts --------------------------------------------------------------------------------