0

其他人有幸在 Cloud9 ide 中使用 flatironjs 吗?

在我的server.js文件中,我有:

require("coffee-script"); 
var app = require("./app");

app.listen(process.env.PORT);

然后在我的app.coffee文件中,我有:

flatiron = require "flatiron"
director = require "director"

app = flatiron.app
app.use flatiron.plugins.http

module.exports = app.router.get "/", ->
res.writeHead 200, { "Content-Type": "text/plain" }
res.end "Hello world!\n"

当我尝试在 Cloud9 IDE 中运行它时,我得到以下信息:

node.js:134
        throw e; // process.nextTick error, or 'error' event on first tick
        **^ ReferenceError: window is not defined**
    at Object. (/node_modules/flatiron/node_modules/broadway/node_modules/eventemitter2/lib/eventemitter2.js:547:63)
    at Module._compile (module.js:411:26)
    at Object..js (module.js:417:10)
    at Module.load (module.js:343:31)
    at Function._load (module.js:302:12)
    at require (module.js:355:19)
    at Object. (/node_modules/flatiron/node_modules/broadway/lib/broadway/app.js:11:14)
    at Module._compile (module.js:411:26)
    at Object..js (module.js:417:10)
    at Module.load (module.js:343:31)

如果我在不使用 flatiron 的情况下创建标准 http 服务器,一切都会运行良好:

http = require "http"
module.exports = http.createServer (req, res) ->
res.writeHead 200, {'Content-Type': 'text/plain'}
res.end "Hello World\n"

想法?

4

2 回答 2

1

所以在eventemitter2.js 文件的底部有一些代码基本上试图“同构”并在 node.js 和浏览器中工作。它试图通过测试以下定义的全局变量来猜测哪个环境:

  • 过程
  • 进程.title
  • 出口

如果所有这些都已定义,则 eventemitter2 会将其导出的属性附加到exports对象以在 node.js 中使用。否则,它会将它们附加到window对象以在浏览器中使用。

由于 cloud9 内部的某种原因,这 3 个全局变量中的 1 个或多个未定义,并且假设window存在并且失败,它会分支到“浏览器”模式。我对 cloud9 ide 托管环境了解得不够多,无法准确了解它是哪一个(或 2 个或 3 个)以及它为什么丢失。

您的香草http代码有效,因为它不加载 eventemitter2,它是在您使用 flatiron 时加载的,这取决于百老汇,这取决于 eventemitter2。

于 2012-03-15T04:56:28.833 回答
1

这是在 Solaris 上运行的 EventEmitter 中的一个错误。如果您只是在最新版本的 Solaris 上运行应用程序,您也可以看到它,将崩溃并显示相同的错误消息。您可以使用已修补的 EventEmitter2删除对浏览器的检查。

我为你创建了一个问题

于 2012-03-16T15:07:28.970 回答