记录一次node egg.js服务内网无外网发布,Cannot find module 'common-bin'

错误:

拷贝整个项目到内网,整体拷贝node_modules。
启动服务报错:Cannot find module 'common-bin'

排查

排查原因是采用的cnpm install导致。
外面是用cnpm下载的依赖,因为cnpm是淘宝镜像很多包都是快捷方式,所以拷贝到内网后报错缺包。

解决

使用npm下载依赖,拷贝到内网服务器上,解决问题。

你可能感兴趣的:(记录一次node egg.js服务内网无外网发布,Cannot find module 'common-bin')