シンプルなファイルWebファイルサーバーを作成しようとしています。私はPhpStormを使用しています。pipe()の未解決の関数またはメソッド
var http = require('http');
var fs = require('fs');
function send404Request(response) {
response.writeHead("404", {"Content-Type": "text/html"});
response.write("404 Page Not Found");
response.end();
}
function onRequest(request, response) {
if (request.method === 'GET' && request.url === '/') {
response.writeHead("200", {"Content-Type": "text/plain"});
fs.createReadStream("./index.html").pipe(response);
} else {
send404Request(response);
}
}
http.createServer(onRequest).listen(8888);
console.log("file server is now running...");
しかし、PhpStormは言う "(未解決の関数やメソッドのパイプを)" ここ
はPhpStormでのJavaScriptライブラリのための私の設定です:
うまくいかない任意のアイデア?
これは新しいボストンのチュートリアルです。まったく同じ問題が今すぐに発生しました – Dan