node.js中遇到SyntaxError: Use of const in strict mode

Node.js的时候使用connect-mongo这个模块的时候出现SyntaxError: Use of const in strict mode这个错误,看了一下其中src/index.js的代码,使用了const、let、"use strict"这些高大上的东西,我的解决方法是:

把connect-mongo版本降低一点,别用最新版。

删除node_modules文件夹,

package.json中把connect-mongo这一条删了,换成"connect-mongo": "0.4.1"(用低版本的)

然后npm install。

运行,没问题

posted @ 2016-10-16 17:59  李一娜  阅读(383)  评论(0编辑  收藏  举报