Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Install the request module for http requests. And for example, it would be possible to make middleware for all requests.
var app = express();
var request = require('request');
app.use(function (req, res, next) {
request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Show the HTML for the Google homepage.
}
});
next();
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question