我在我的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:)
答案 0 :(得分:0)
该消息显示依赖项中不存在指定的模块。我修复它的方法是重新安装错误消息指定的模块包。
在你的情况下
npm install --save util
希望这有帮助!