UNPKG

req-fast

Version:

This module is designed to be the fast, lightweight way to fetch the web content(HTML stream).

12 lines (8 loc) 172 B
'use strict' var req = require('../') req('http://www.bing.com', (err, resp) => { if (err) { return console.log('[ERROR]', err.message) } console.log(resp) })