Windows上のNode.Js-コンソールをクリアする方法
node.jsの環境と哲学にまったく慣れていないので、いくつかの質問に答えたいと思います。Windowsインストーラー用のnode.jsとノードパッケージマネージャーをダウンロードしました。現在、nodejsアプリの実行にはWindowsCmdプロンプトが使用されています。 clsは、コマンドウィンドウまたはコマンドプロンプトのエラーをクリアします。node.jsに相当するものはありますか?console.clearは存在しません;(または他の形式ですか? 以下のコードでサーバーを作成しました var http = require("http"); http.createServer(function (request, response) { response.writeHead(200, { "Content-Type": "text/html" }); response.write("Hello World"); console.log("welcome world")response.end(); }).listen(9000, "127.0.0.1"); コードを以下に変更し、ブラウザを更新してコンテンツタイプが変更されていないことを確認しました。変更を確認するにはどうすればよいですか? var http = require("http"); http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.write("Hello World"); console.log("welcome world") response.end(); }).listen(9000,"127.0.0.1");