首页 > 代码库 > koa2 知识点

koa2 知识点

运行 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用的。是用在服务端,而不是浏览器你的前端,你在前端渲染,肯定就加载不了这个模块了。

koa2 知识点