我想检查一下本地是否支持反应?模块。
https://www.npmjs.com/package/uniqid
我正在做一个简单的测试。包括" uniqid":" ^ 4.1.1" in"依赖"在我的package.json中。然后运行命令:
"yarn install"
然后我在App.js文件中添加了以下语句:
var uniqid = require('uniqid');
console.log(uniqid());
我一直收到这个错误:
"Module does not exist in module map" error.
我已经尝试过以下选项:
rm -rf yarn.lock
rm -rf package-lock.json
yarn cache clean
rm -rf node_modules
watchman watch-del-all
yarn start
没有运气。