节点JS服务器未反映服务器文件中的更改

当我对节点文件进行任何更改时,它是Node JS的新手,它在服务器中未更新,并且当我更改端口号并杀死服务器并再次启动它时,它不起作用

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end('Hello');
}).listen(8080);