CA MARCHE

This commit is contained in:
MasterAcnolo
2025-06-26 14:27:54 +02:00
parent 2ad71bba77
commit 0c99e48950
2 changed files with 24 additions and 0 deletions

13
server/server.js Normal file
View File

@@ -0,0 +1,13 @@
http=require("http")
http.createServer((req,res) =>{
res.writeHead(200,{
"content-type":"text/json"
})
res.write('{"nom":"JeanKul","prenom":"TaMere"}')
res.end()
}).listen(8080,()=>{
console.log("J'écoute ta grand mère")
})