Skip to content

Instantly share code, notes, and snippets.

View stoshiya's full-sized avatar

Toshiya SAITOH stoshiya

View GitHub Profile

Untitled Slide

Welcome to Glide.

Glide is the easiest way to create useful slide for all of your Gists.

  • input key <- to go backward.
  • input key -> to go forward.

Publishing

@stoshiya
stoshiya / hello.js
Created November 23, 2012 11:00 — forked from shigeki/hello.js
第1回Node.js入門勉強会 レポート課題
var http = require('http');
server = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
server.close();
});
server.listen(8080, 0, function () {
console.log('Server running at http://localhost:8080/');
});