matthewmueller / x-ray

The next web scraper. See through the <html> noise.
MIT License
5.86k stars 350 forks source link

DeprecationWarning: OutgoingMessage.prototype._headers is deprecated #381

Open x4080 opened 2 years ago

x4080 commented 2 years ago

Hi, I got this message when trying to use it ex :

var Xray = require('x-ray')
var x = Xray()
x('http://google.com', 'title')
    .then(function (res) {
        console.log(res)
    })
    .catch(function (err) {
        console.log(err) // handle error in promise
    })

output is

(node:9660) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
(Use `node --trace-deprecation ...` to show where the warning was created)
Google

Any tips how to fix it ?

Thanks