SSL Error: CERT_UNTRUSTED while using npm command

后端 未结 7 510
梦谈多话
梦谈多话 2020-12-07 08:10

I am trying to install express framework using npm command but getting following error.

error message is

E:\\myFindings\\nodejs_programs\\node>         


        
7条回答
  •  感动是毒
    2020-12-07 08:17

    Reinstall node, then update npm.

    First I removed node

    apt-get purge node
    

    Then install node according to the distibution. Docs here .

    Then

    npm install npm@latest -g
    

提交回复
热议问题