├── .gitignore ├── README.md ├── actix ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── public │ └── ely.png ├── src │ └── main.rs └── templates │ └── page.html ├── axum ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── public │ └── ely.png ├── src │ └── main.rs └── templates │ └── page.html ├── bench.ts ├── bun.lockb ├── elysia ├── .gitignore ├── README.md ├── bun.lockb ├── package.json ├── public │ └── ely.png ├── spawn.ts ├── src │ └── index.tsx └── tsconfig.json ├── package.json ├── scripts ├── body.json ├── body.lua ├── ely-wrk.sh └── wrk.sh └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | target -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/README.md -------------------------------------------------------------------------------- /actix/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /actix/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/actix/Cargo.lock -------------------------------------------------------------------------------- /actix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/actix/Cargo.toml -------------------------------------------------------------------------------- /actix/public/ely.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/actix/public/ely.png -------------------------------------------------------------------------------- /actix/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/actix/src/main.rs -------------------------------------------------------------------------------- /actix/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/actix/templates/page.html -------------------------------------------------------------------------------- /axum/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /axum/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/axum/Cargo.lock -------------------------------------------------------------------------------- /axum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/axum/Cargo.toml -------------------------------------------------------------------------------- /axum/public/ely.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/axum/public/ely.png -------------------------------------------------------------------------------- /axum/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/axum/src/main.rs -------------------------------------------------------------------------------- /axum/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/axum/templates/page.html -------------------------------------------------------------------------------- /bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/bench.ts -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/bun.lockb -------------------------------------------------------------------------------- /elysia/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/.gitignore -------------------------------------------------------------------------------- /elysia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/README.md -------------------------------------------------------------------------------- /elysia/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/bun.lockb -------------------------------------------------------------------------------- /elysia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/package.json -------------------------------------------------------------------------------- /elysia/public/ely.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/public/ely.png -------------------------------------------------------------------------------- /elysia/spawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/spawn.ts -------------------------------------------------------------------------------- /elysia/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/src/index.tsx -------------------------------------------------------------------------------- /elysia/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/elysia/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/package.json -------------------------------------------------------------------------------- /scripts/body.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Elysia" 3 | } 4 | -------------------------------------------------------------------------------- /scripts/body.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/scripts/body.lua -------------------------------------------------------------------------------- /scripts/ely-wrk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/scripts/ely-wrk.sh -------------------------------------------------------------------------------- /scripts/wrk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/scripts/wrk.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/multi-ely/HEAD/tsconfig.json --------------------------------------------------------------------------------