✅ 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 un module de Node :
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.listen(300000, function () {
console.log('Example app listening on port 300000!');
});
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!