UnableToResolveError:无法解析模块`util`

时间:2017-04-25 14:51:00

标签: node.js reactjs npm react-native npm-install

我在我的react本机项目中使用xml2json,在运行应用程序时,我收到错误消息

UnableToResolveError: Unable to resolve module `events`
This might be related to https://github.com/facebook/react-native/issues/4968
To resolve try the following:
  1. Clear watchman watches: `watchman watch-del-all`.
  2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.
  3. Reset packager cache: `rm -fr $TMPDIR/react-*` or `npm start --reset-cache`.

也出现在其他第三方模块中,它们都是无法解析的nodejs核心模块。 需要你的帮助,thx:)

1 个答案:

答案 0 :(得分:0)

该消息显示依赖项中不存在指定的模块。我修复它的方法是重新安装错误消息指定的模块包。

在你的情况下 npm install --save util

希望这有帮助!