Skip to content

Instantly share code, notes, and snippets.

@bovine
Created October 20, 2011 15:15
Show Gist options
  • Save bovine/1301397 to your computer and use it in GitHub Desktop.
Save bovine/1301397 to your computer and use it in GitHub Desktop.
var http = require('http');
var tcl = require('./nodetcl.node');
var interp = new tcl.NodeTcl();
interp.eval("package require flightaware");
interp.eval("package require flightaware-core");
interp.eval("set startTime [clock seconds]");
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello from Tcl! We started ' +
interp.eval("display_time $startTime [clock seconds]") + '\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment