0
ノードアプリケーション用にリクエストlib(https://www.npmjs.com/package/request)を使用します。ノードリクエストの単純な使用が動作しない
そして、この単純な例は動作しません:
console.log(' BEGIN ---- ');
request('http://www.google.com', function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
});
console.log('END ---- ');
私だけは私のコンソールでメッセージ---- ----とENDをBEGINませんが、GETリクエストから何もしています。
私は何かを見逃しましたか?