标签:this run span nodejs npm des 引擎 命令 node
运行 npm run dev 命令报错:
This dependency was not found: * fs in ./~/destroy/index.js To install it, you can run: npm install --save fs
原因:
前端用了后端的库。我遇到过,在react里引入require(‘NET‘) net是服务端的api。所以报错。
net库和fs库都是chrome的v8引擎之外的写给nodejs用的。是用在服务端,而不是浏览器你的前端,你在前端渲染,肯定就加载不了这个模块了。
标签:this run span nodejs npm des 引擎 命令 node
原文地址:http://www.cnblogs.com/cag2050/p/6768538.html