-
Notifications
You must be signed in to change notification settings - Fork 20
Closed
Description
With got v11:
> console.time('done');got('https://facebook.com').then(x => console.timeEnd('done'))
Promise { <pending> }
> done: 302.025ms
> console.time('done');got('https://facebook.com', { http2: true }).then(x => console.timeEnd('done'))
Promise { <pending> }
> done: 60188.968ms
> console.time('done');got('https://twitter.com').then(x => console.timeEnd('done'))
Promise { <pending> }
> done: 2343.526ms
> console.time('done');got('https://twitter.com', { http2: true }).then(x => console.timeEnd('done'))
Promise { <pending> }
> done: 5333.237ms
> console.time('done');got('https://google.com').then(x => console.timeEnd('done'))
Promise { <pending> }
> done: 983.180ms
> console.time('done');got('https://google.com', { http2: true }).then(x => console.timeEnd('done'))
Promise { <pending> }
> done: 1520.592ms
Not sure what's causing it. Pages are speedy when I load them in Chrome.
Metadata
Metadata
Assignees
Labels
No labels