Skip to content

Instantly share code, notes, and snippets.

@clonn
Created October 6, 2015 09:00
Show Gist options
  • Save clonn/1d45f72157d9445da153 to your computer and use it in GitHub Desktop.
Save clonn/1d45f72157d9445da153 to your computer and use it in GitHub Desktop.
create koding server

steps

term

cd Web/
touch server.js

server.js

console.log("hello world");

var http = require("http");

http.createServer(function (req, res) {
    
    console.log("get message");
    res.end("ok");
    
}).listen(3000);

term

node server.js

open url

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment