我正在使用hapi.js,一切正常。突然,我收到以下错误,我认为这是由于node.js版本:
/Users/jamshidnafisi/Documents/bizbuzz/node_modules/hapi/lib/index.js:5
const Server = require('./server');
^^^^^
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)
答案 0 :(得分:2)
Hapi v10.0.0及更高版本需要node.js v4.0.0或更高版本。您使用的是旧版本(v0.12.7)。将node.js版本更新到v4或v5,它将起作用。您可以在此处下载node.js:https://nodejs.org/en/。