运行yarn run serve出现错误Access to process.binding(‘http_parser‘) is deprecated.

问题:

运行yarn run serve出现错误Access to process.binding(‘http_parser’) is deprecated…error:0308010C:digital envelope routines::unsupported

运行yarn run serve出现错误Access to process.binding(‘http_parser‘) is deprecated._第1张图片
运行yarn run serve出现错误Access to process.binding(‘http_parser‘) is deprecated._第2张图片

原因:

npm版本太高,我的版本号是:

在这里插入图片描述

解决方法:

1.将你的node降到低版本,(不建议,很麻烦,还得卸载重新装,卸不干净也别想重装
2.运行一行代码就行,只不过每次项目启动运行yarn run serve之前都得运行这行代码

windows下

$env:NODE_OPTIONS="--openssl-legacy-provider"

MAC下

export NODE_OPTIONS=--openssl-legacy-provider

运行yarn run serve出现错误Access to process.binding(‘http_parser‘) is deprecated._第3张图片

你可能感兴趣的:(开发语言,ecmascript,javascript,npm)