node.js 运行app.js服务器的时候报错:Error: Cannot find module 'express'
2021/7/10 1:07:43
本文主要是介绍node.js 运行app.js服务器的时候报错:Error: Cannot find module 'express',对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
完整错误提示:
错误分析:这句警告意思是module文件夹中没有express框架相关依赖包。
解决方案:只需要运行命令自行安装express依赖包即可。
PS D:\WEB前端\案例\前端工程化:ES6模块化和webpack打包\webpack_study> npm install express npm WARN webpack_study@1.0.0 No description npm WARN webpack_study@1.0.0 No repository field. + express@4.17.1 added 50 packages from 37 contributors in 2.751s
成功运行:
PS D:\WEB前端\案例\前端工程化:ES6模块化和webpack打包\webpack_study> nodemon .\app.js [nodemon] 2.0.7 [nodemon] to restart at any time, enter `rs` [nodemon] watching path(s): *.* [nodemon] watching extensions: js,mjs,json [nodemon] starting `node .\app.js` 服务器连接!
这篇关于node.js 运行app.js服务器的时候报错:Error: Cannot find module 'express'的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28Vue入门教程:从零开始搭建第一个Vue项目
- 2024-12-28Vue CLI入门指南:快速搭建Vue项目
- 2024-12-28Vue3基础知识入门教程
- 2024-12-28Vue3公共组件开发与使用入门教程
- 2024-12-28Vue CLI学习:新手入门教程
- 2024-12-28Vue CLI学习:轻松入门与实践指南
- 2024-12-28Vue3公共组件学习入门指南
- 2024-12-28Vue3公共组件学习:从入门到上手实战
- 2024-12-28Vue3学习:从入门到初级实战教程
- 2024-12-28Vue3学习:新手入门与初级教程