ammarm08 / quasimodo

Benchmark NodeJS programs against each other (CPU, memory, loadtesting)
0 stars 0 forks source link

docs: Add example for specifying multiple V8 arguments to node #12

Closed alexdulin closed 7 years ago

alexdulin commented 7 years ago

I initially tried to pass options like this:

['--turbo --max_inlined_source_size=700']

which is, in hindsight, clearly wrong. Including in the examples something with two arguments like this would prevent fools like myself from making the same mistake:

['--turbo', '--max_inlined_source_size=700']
ammarm08 commented 7 years ago

Good idea, updated readme to show this