找不到'now'模块 - nowjs和nodejs

时间:2012-06-01 21:12:16

标签: node.js nowjs-sockets

我在我的主文件夹(/ home / myname /)中安装了nodejs。到目前为止没问题。 然后我安装了nowjs并且有一个警告:

  

检查节点路径:未找到

现在,当我尝试这个例子:http://nowjs.com/doc/example我收到错误:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^ Error: Cannot find module 'now'
    at Function._resolveFilename (module.js:334:11)
    at Function._load (module.js:279:25)
    at Module.require (module.js:357:17)
    at require (module.js:368:17)
    at Object.<anonymous> (/var/www/www.mydomain.de/htdocs/helloworld_server.js:7:13)
    at Module._compile (module.js:432:26)
    at Object..js (module.js:450:10)
    at Module.load (module.js:351:31)
    at Function._load (module.js:310:12)
    at Array.0 (module.js:470:10)

路径的东西是错误的我猜...有谁知道如何解决这个问题? 感谢

1 个答案:

答案 0 :(得分:3)

在此之前尝试:

npm config set global true && \
     echo 'export NODE_PATH="'$(npm root -g)'"' >> ~/.bashrc && \
     . ~/.bashrc