new course on openclassroom
This commit is contained in:
7
tests/tests_hugo/go-fullstack/backend/server.js
Normal file
7
tests/tests_hugo/go-fullstack/backend/server.js
Normal file
@@ -0,0 +1,7 @@
|
||||
const http = require('http');
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
res.end('Voilà la réponse du serveur !');
|
||||
});
|
||||
|
||||
server.listen(process.env.PORT || 3000);
|
||||
Reference in New Issue
Block a user