From aba1078ba2d3d770e3e512478e19ffc1509d4988 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Thu, 7 Dec 2017 11:33:53 +0100 Subject: [PATCH] README: Mention `jsvu` `jsvu` makes it easy to run the benchmark in recent versions of all supported JS engines. --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08e1d742..a41f8dad 100644 --- a/README.md +++ b/README.md @@ -61,5 +61,14 @@ Geometric mean: 9.37 runs/sec ``` Or you open a web browser and point it to `dist/index.html`, or you can use one -of the engine JS shells (`d8`, `jsc`, `ch` or `jsshell`) to run the special bundle -in `dist/cli.js`. +of the engine JS shells to run the special bundle in `dist/cli.js`. The easiest +way to install recent versions of the supported JS engine shells is to run +[`jsvu`](https://github.com/GoogleChromeLabs/jsvu). Afterwards, you can run the +benchmark as follows: + +```sh +$ chakra dist/cli.js +$ javascriptcore dist/cli.js +$ spidermonkey dist/cli.js +$ v8 dist/cli.js +```