moudule.js:338 throw err; Error: Cannot find module 'webpack/lib/node/NodeTemplatePlugin'

来源:互联网 发布:在线视频录制软件 编辑:程序博客网 时间:2024/06/05 07:17

我查了一些资料,是因为全局安装webpack,导致的。

解决方法:1,可以在本项目中安装,npm install webpack

2, 或者是,在~/.bash_profile中添加如下设置: export NODE_PATH="/usr/local/lib/node_modules" 保存退出。

.bash_profile这个是隐藏文件,或者是配置文件,那怎么进入这个文件哪?

    输入cd ~,输入touch .bash_profile,输入open -e .bash_profile,保存文件,关闭.bash_profile;更新刚配置的环境变量,输入source .bash_profile

2 0