Kode Tengah Node untuk Server

const server = http.createServer((req, res)=>{
res.writeHead(200, {‘Content-type’ : ‘text/html’}); 
res.end(fileContent)
Successful Salamander