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

11
index.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>

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")
})