Benchmark tests for node.js

I would like to make some comparison between different boards and architectures (arm / ia32) in terms of using node.js. Can someone point me to a set of related test benchmarks that use node.js, if any?

I'm not looking for general JavaScript test benchmarks, but something like node.js, related and specific.

Thank.

+5
source share
1 answer

I'm not too sure that this is what you are looking for, but you can always use ab(part of the package apache-utils) to compare the file served by node and create parallel requests.

$ ab http://example.com/client.html/ -n 10000 -c 1000

1000 10000 .

of , , ab

+3

All Articles