✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Le code suivant est correct pour Node :
var http = import('http');
var server = http.createServer(function(req, res) {
res.writeHead(200);
res.end('Salut tout le monde !');
});
server.listen(8080);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!