- GoLang
- Rust
- NodeJS
- Pnpm
- Apache Bench (ab)
In express and fastify folders do
pnpm installTo run them
node index.jsExpress app will listen on
:3000, fastify will listen on:4000
No need to do anything (no 3rd pary lib/pkg)
To run
go run main.goGo will listen on port
:5000
In rust folder do
cargo fetchTo run
cargo build --release
./target/release/rustRust will listen on port
:6000