SyntaxError:在github和codeship

时间:2017-10-02 09:52:14

标签: node.js github codeship sparkpost

我在源代码Github / Codeship中运行grunt test时发现以下错误。

在codeship内部的setup命令中,以下代码配置如下。

nvm install 0.12.6
nvm use 0.12.6
npm install grunt-cli bower -g
npm install
bower install -p
npm run update-webdriver

并在codeship中测试命令;

grunt test

但是在我的源代码中找不到该错误,并且通过查看codeship给出的以下错误消息实际上在github / codeship中找到了该错误。因为我们在服务器中配置的文件夹结构没有定义。请帮我解决一下。感谢。

Using 2 x hasMany to represent N:M relations has been deprecated. Please use belongsToMany instead
>> Mocha exploded!
>> /home/rof/src/github.com/MyProjects/node_modules/sparkpost/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js:5
>> const Hoek = require('hoek');
>> ^^^^^
>> SyntaxError: Use of const in strict mode.
>>     at exports.runInThisContext (vm.js:73:16)
>>     at Module._compile (module.js:443:25)
>>     at Object.Module._extensions..js (module.js:478:10)
>>     at Module.load (module.js:355:32)
>>     at Function.Module._load (module.js:310:12)
>>     at Module.require (module.js:365:17)
>>     at require (module.js:384:17)
>>     at Object.<anonymous> (/home/rof/src/github.com/MyProjects/node_modules/sparkpost/node_modules/request/node_modules/hawk/lib/index.js:5:33)
>>     at Module._compile (module.js:460:26)
>>     at Object.Module._extensions..js (module.js:478:10)
>>     at Module.load (module.js:355:32)
>>     at Function.Module._load (module.js:310:12)
>>     at Module.require (module.js:365:17)
>>     at require (module.js:384:17)
>>     at Object.<anonymous> (/home/rof/src/github.com/MyProjects/node_modules/sparkpost/node_modules/request/request.js:9:12)
>>     at Module._compile (module.js:460:26)
Warning: Task "mochaTest:src" failed. Use --force to continue.

2 个答案:

答案 0 :(得分:5)

  

因为我们在服务器中配置的文件夹结构没有定义。

此问题与文件夹结构无关。

您的项目目前正在使用节点版本0.12.6,该版本已过时。当前LTS版本的节点为6.11.3,当前版本为8.6.0

具体问题是SyntaxError: Use of const in strict mode.,这意味着您使用的库目前正在使用ES2015语法或更高版本。问题的根本原因在于Boom模块,该模块在第5行使用const(并且很可能也是其他当前语法)。

此处的问题解决方案是更新Codeship中使用的节点版本。

nvm install 6.11.3
nvm use 6.11.3

答案 1 :(得分:2)

简单的方法。只需通过以下代码升级您的节点:

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

享受!