I'm trying to launch my node server using an example from an AngularJS book (server.js).
var connect = require('connect');
connect.createServer(
connect.static("../angularjs")
).listen(5000);
Initially I was getting "object has no method static" so I re-installed the connect include and now when I do: node server.js I get a blinking cursor in CMD (Windows) and "Cannot GET /" from my browser.
Any ideas folks?
Thanks!