Skip to content

Instantly share code, notes, and snippets.

@marciorodrigues87
Last active July 6, 2017 03:18
Show Gist options
  • Save marciorodrigues87/414a3c2702aca8bc8b8338853518e7ee to your computer and use it in GitHub Desktop.
Save marciorodrigues87/414a3c2702aca8bc8b8338853518e7ee to your computer and use it in GitHub Desktop.
const request = require('request-promise').defaults({
resolveWithFullResponse: true,
forever: true // <--
})
request('https://www.vivareal.com.br/')
.then(response => {
console.log('statusCode:', response && response.statusCode)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment