当我在DigitalOcean Ubuntu 17.04 x64 VPS服务器中运行node app
时,出现以下错误:
/root/myApp/node_modules/natural/lib/natural/brill_pos_tagger/lib/Brill_POS_Tagger.js:26
logger.setLevel('WARN');
^
TypeError: logger.setLevel is not a function
at Object.<anonymous> (/root/myApp/node_modules/natural/lib/natural/brill_pos_tagger/lib/Brill_POS_Tagger.js:26:8)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (/root/myApp/node_modules/natural/lib/natural/index.js:81:26)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)
但是,当我在我的工作笔记本电脑上使用相同的东西运行节点应用程序时,它会正常运行。
我一开始认为谷歌云API安装可能会出错,但是,在我的VPS上安装后,我仍然遇到同样的错误。
还有其他可能导致此错误的原因吗?我在笔记本电脑上使用相同的代码运行node app
,运行正常。