I don\'t know much about how the https module in node.js works so if any of you can answer this question then that would be great.
I have noticed in a small app I ma
You are using console.timeEnd('Begin')
multiple times in your code
As of node v6.0.0, timeEnd() deletes the timer to avoid leaking it
So when you call console.timeEnd('Begin')
first, it deletes the timer & on second call of console.timeEnd('Begin')
it can not find the reference to same
You can create multiple labels if you want 2 timers for different issues, but make sure you just write timeEnd()
only once for every time()