' P '

whatever I will forget

Entries from 2020-10-22 to 1 day

Node.js でサーバーの応答にてhtmlを表示させる方法

下記コードをindex.jsに記述する. 'use strict'; const http = require('http'); const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); res.write( '<html lang="ja"><body><h1>Displaying HTML/h1></body></html>' ); res.end();…