我正在尝试运行一个简单的应用程序,该应用程序使用 http 服务器模块检查 URL 的状态。
基本上这是一个简单的 http 服务器:
require('http').createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('URL is OK');
}).listen(4000);
现在,我想使用此部分检查 URL 的状态:
var request = require('request');
request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log("URL is OK") // Print the google web page.
}
})
所以基本上我想启动 node ,打开浏览器并显示带有“URL OK”文本的内容。然后每10分钟刷新一次。
任何帮助是极大的赞赏。