ENOENT: no such file or dictionary

Mac OS升级到Catalina(10.15.1)之后,node项目,npm run报错

ENOENT: no such file or dictionary, open '/var/log/node/data_proxy.log'
180591574652381_.pic.jpg

解决方法:自己创建该文件

touch /var/log/node/data_proxy.log
如果提示失败的话,可能是node目录不存在

先创建目录 mkdir -p /var/log/node/
再创建touch touch data_proxy.log

你可能感兴趣的:(ENOENT: no such file or dictionary)