node报错解决方案Error: Cannot find module http-errors

Posted 征途黯然.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node报错解决方案Error: Cannot find module http-errors相关的知识,希望对你有一定的参考价值。

出错描述

在node里面用express新建一个项目之后,输入

npm start

系统报错,报错如图:

解决方案

在新建项目之后,应再输入命令:

npm install

把其他的一些依赖模块装入。然后再输入

npm start

就可以正常开启项目了。

出错原因

express创建项目的时候,对于一些库,例如http-errors,这些库不是node自带的核心模块,但是确是express框架必须要用到的。所以得用命令

npm install

初始化一下,把这些express依赖的库装入。

以上是关于node报错解决方案Error: Cannot find module http-errors的主要内容,如果未能解决你的问题,请参考以下文章

node 报错:Uncaught Error: Cannot find module "!!../../../node_modules/extract-webpack-plugin/load

VUE报错:Module build failed: Error: Cannot find module ‘node-sass‘

VUE报错:Module build failed: Error: Cannot find module ‘node-sass‘

运行ts-node xxx.ts报错:Cannot find module ……

vue项目访问页面是报错Error: Cannot find module '@/views/sys/menu/index'

vue项目访问页面是报错Error: Cannot find module '@/views/sys/menu/index'