Node.js - Error trying to start server.js

Trying to get AjaxIM to work on my site using Node.js. However, I get an error when I try to start server.js Does anyone know what I'm doing wrong, and how to fix it?

When this file is run, the following output is generated:

-bash-3.2# /usr/src/node-v0.4.6/node /home/colleg60/public_html/development/ajaxim/server/server.js

node.js:134
       throw e; // process.nextTick error, or 'error' event on first tick
       ^
Error: Cannot find module 'tcp'
   at Function._resolveFilename (module.js:320:11)
   at Function._load (module.js:266:25)
   at require (module.js:348:19)
   at Object.<anonymous> (/home/colleg60/public_html/development/ajaxim/server/server.js:32:11)
   at Module._compile (module.js:404:26)
   at Object..js (module.js:410:10)
   at Module.load (module.js:336:31)
   at Function._load (module.js:297:12)
   at Array.<anonymous> (module.js:423:10)
   at EventEmitter._tickCallback (node.js:126:26)
+5
source share
1 answer

Try changing 'tcp' to 'net'

can work.

Also, in any case, did you use the old version of AjaxIM> http://groups.google.com/group/ajaxim/browse_thread/thread/151beb1881f36209 ?

+3
source

All Articles