Files
2025-03-07 19:22:02 +01:00

11 lines
239 B
JavaScript

const http = require('http');
const h1Target = 'http://www.example.com/';
const req1 = http.request(h1Target, (res)=>{
console.log(`
Url : ${h1Target}
Status : ${res.statusCode}
HttpVersion : ${res.httpVersion}
`);
});
req1.end();