2016-10-01から1ヶ月間の記事一覧

はてなブログのシンタックスハイライトをSolarized Darkにする

参考にしたところ wakame.hatenablog.jp orangain.hatenablog.com kerotaa.hateblo.jp 参考どころかほぼ丸写しです。情報を公開してくださり、本当にありがとうございます。

Node.jsでのhttpサーバの基本

動作確認環境 Node.js v6.3.1 Node.jsでhttpサーバを使う httpサーバの起動 let http = require('http'), server = http.createServer(); server.on('request', (request, response) => { response.writeHead(200, {'Content-Type': 'text/html'}); response…