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分ごとに更新します。
どんな助けでも大歓迎です。