express stop working - util未定义

Chi*_*hin 9 node.js express

我自己有一个小节点/表达应用程序并运行.我已经好好看了3个月 - 现在当我尝试启动应用程序时出现以下错误.

Express server listening on port 3000 in development mode
 Caught exception: ReferenceError: util is not defined
Run Code Online (Sandbox Code Playgroud)

任何人都知道扳手可以进入什么工作?任何帮助非常感谢.

Express位于"版本":"2.5.0

Jas*_*awn 21

你需要要求util:

var util = require('util');
Run Code Online (Sandbox Code Playgroud)

也许这发生在你的Mongo代码中.