I'm having problems deploying a nodejs application to Heroku. Git pushes and it builds and deploys properly but then it crashes.
The crashing seems to be caused by any use of require for my own non-module files, eg: var bla = require("./bla.js");
From the 'heroku run bash' I can also see bizarre behavior when I do a require on one of my own files as well, it spews out garbage into the terminal for several minutes instead of the expected result.
The same application runs fine locally and on other servers.
The exact error message is the always helpful:
node.js:134
throw e; // process.nextTick error, or 'error' event on first tick
I've made a simple test file to demonstrate the problem:
var express = require("express"),
log = require("./analytics/log.js").log;
// if I comment out this line it works, the file does exist within heroku
// and works outside of heroku, but it seems any of my own files being
// require'd will trigger the crash
var app = module.exports = express.createServer();
app.configure(function(){
app.use(express.static(__dirname + "/public"));
app.use(express.methodOverride());
app.use(app.router);
});
app.all("*", function(request, response) {
response.end("bla");
});
app.listen(process.env.PORT || 3000);