OpenShift不能使用某些Nodejs依赖关系(Koa)

我已经检查了如何在Openshift中设置KoaJS ,它仍然无法正常工作。

这是我的package.json文件的一部分:

  "engines": { "node": ">= 0.12.0", "npm": ">= 1.0.0" }, "dependencies": { "co-busboy": "^1.3.0", "forever": "^0.14.1", "fs": "0.0.2", "koa": "^0.18.1", "koa-logger": "^1.2.2", "koa-router": "^4.2.0", "koa-static": "^1.4.9", "path": "^0.11.14" }, "devDependencies": {}, "bundleDependencies": [], "private": true, "main": "--harmony app.js" 

然后到我的app.js文件。

此代码工作:

 var http = require('http'); //var koa = require('koa'); //var app = koa(); var ip = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1', port = process.env.OPENSHIFT_NODEJS_PORT || '8080'; http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(port, ip); console.log('Server running at http://'+ip+':'+port+'/'); 

这不起作用:

 var http = require('http'); var koa = require('koa'); var app = koa(); var ip = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1', port = process.env.OPENSHIFT_NODEJS_PORT || '8080'; http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(port, ip); console.log('Server running at http://'+ip+':'+port+'/'); 

正如你所看到的唯一的区别是,我已经取消了两行。

错误:

 Service Temporarily Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Apache/2.2.15 (Red Hat) Server at fela-basickarl.rhcloud.com Port 80 

在OpenShift错误日志状态:

 ... .../app-root/runtime/repo/node_modules/koa/lib/application.js:179 function *respond(next) { ^ SyntaxError: Unexpected token * ... 

一个大杜。

console.log(process.versions); 显示我正在使用节点0.10.25 ,即使我在package.json中声明,我希望使用>= 0.12.0

 { http_parser: '2.0', node: '0.10.25', v8: '3.14.5.10', ares: '1.9.1', uv: '0.10.23', zlib: '1.2.3', modules: '11', openssl: '1.0.0-fips' } 

什么导致OpenShift不使用0.12.2?

快速部署0.12

https://hub.openshift.com/quickstarts/128-node-js-0-12

对于那些喜欢使用上面的链接去清除nodejs 0.12的人,有一个buttonDeploy

0.12.2

要部署特定的版本0.12.2复制目录.openshifthttps://github.com/ryanj/nodejs-custom-version-openshift并覆盖您当前的项目.openshift目录(我假设你正在使用OpenShift git那是创build应用程序时创build)。

导航到your-project/.openshift/markers/并打开文件NODEJS_VERSION并在底部添加0.12.2 。 我的文件看起来如此:

 # Uncomment one of the version lines to select the node version to use. # The last "non-blank" version line is the one picked up by the code in # .openshift/lib/utils # Default: 0.10.25 # # 0.8.24 # 0.9.1 # 0.10.25 # 0.11.11 # 0.10.25 0.12.2 

然后通过git上传你的项目到OpenShift(在你的项目根目录下)。

 git add -A . git commit -a -m "replaced .openshift directory" git push 

– 和谐旗帜?

如Node.js 0.12中提供的ECMAScript 6function所述 – 某些函数仍然需要和谐标志。

这意味着添加它也package.json file ,看看我的问题看到一个例子。