Skip to content

Instantly share code, notes, and snippets.

@resure
Last active July 14, 2017 13:33
Show Gist options
  • Save resure/599133fa85ec1de00e1bbe193f87b6d0 to your computer and use it in GitHub Desktop.
Save resure/599133fa85ec1de00e1bbe193f87b6d0 to your computer and use it in GitHub Desktop.
const vm = require('vm');
const instance = {};
for (let i = 0; i < 10; i++) {
const execStart = process.hrtime();
vm.runInNewContext('', instance);
const execEnd = process.hrtime(execStart);
console.log(`${execEnd[0]}s ${execEnd[1] / 1000000}ms`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment