11

I have a Node.js app. When I run node -v from the command-line, I see the following:

v10.3.0

This is relevant because I'm interested in using the Performance Hooks. I've created the most basic thing I can think of, which looks like this in an in a file named 'index.js':

const performance = require('perf_hooks');

let p = performance.now();

When I run node index.js from the command-line, I get an error that says:

TypeError: performance.now is not a function

Why am I getting this error? What am I missing?

sideshowbarker
  • 81,827
  • 26
  • 193
  • 197
Some User
  • 5,257
  • 13
  • 51
  • 93

1 Answers1

27

The perf_hooks module exports several things, one of them is performance, so using object destructuring you could do:

const { performance } = require('perf_hooks');

Or with object access:

const performance = require('perf_hooks').performance;
MikeM
  • 13,156
  • 2
  • 34
  • 47
J. Pichardo
  • 3,077
  • 21
  • 37