Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/415.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/node.js/42.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 在Nodejitsu上运行meteor应用程序_Javascript_Node.js_Meteor_Nodejitsu - Fatal编程技术网

Javascript 在Nodejitsu上运行meteor应用程序

Javascript 在Nodejitsu上运行meteor应用程序,javascript,node.js,meteor,nodejitsu,Javascript,Node.js,Meteor,Nodejitsu,将meteor应用程序部署到Nodejitsu试用环境中,但未能使其运行。从我的meteor应用程序目录执行柔术部署时,我得到以下错误:ReferenceError:meteor未定义 如果您已经在Nodejitsu上安装并运行了meteor应用程序,请强调您采取的步骤以及我可能缺少的依赖项。我将使用您的建议并尝试运行我的应用程序。谢谢 // package.json contents { "name": "test123-meteor", "subdomain": "user123.t

将meteor应用程序部署到Nodejitsu试用环境中,但未能使其运行。从我的meteor应用程序目录执行柔术部署时,我得到以下错误:
ReferenceError:meteor未定义

如果您已经在Nodejitsu上安装并运行了meteor应用程序,请强调您采取的步骤以及我可能缺少的依赖项。我将使用您的建议并尝试运行我的应用程序。谢谢

// package.json contents
{
  "name": "test123-meteor",
  "subdomain": "user123.test123-meteor",

/*
* Really not sure about this line here...
*/
  "scripts": {
    "start": "node client/controllers/GeneralController.js"
  },
  "version": "0.0.1-2",
  "engines": {
    "node": "0.8.x"
  }
}

Meteor不会在nodejitsu上运行,直到修复此错误:。如果你想要它,你应该启动这个bug,甚至考虑修复它。(天真地说,这似乎是一种需要更多持久性而非卓越性的东西;对于一个未经修改就构建在5个以上其他操作系统上的软件包来说,这是一个构建问题。)

我今天尝试了这一点,但在使用demeteorizer时没有遇到任何问题。我在Meteopedia上写了以下关于它的小文章,其中包括我的定制构建脚本,它大大简化了部署


meteor bundle
然后使用nodejitsu部署应用程序?据我所知,尽管旧版本显然有效,但node fibers(meteor使用的)目前与nodejitsu不兼容。它不起作用:@booyaa有什么具体原因吗?该链接没有包含meteor无法在Nodejitsu上运行的任何原因。。除非我错过了某事。