代码之家  ›  专栏  ›  技术社区  ›  Vojtěch Dohnal

新的反应项目2.1失败,NPM错误!我是个茶壶

  •  3
  • Vojtěch Dohnal  · 技术社区  · 6 年前

    但是,当我创建一个新的ASP.NET Core 2.1 React项目时,还原NPM包失败,原因是:

    NPM: ERR! 418 I'm a teapot: acorn@5.3.0
    

    .npmrc如下所示:

    proxy=http://xxx.xxx.cz:3128/
    registry=http://registry.npmjs.org/
    strict-ssl=false
    

    cd %ProgramFiles%\nodejs
    npm install npm@latest
    

    npm ERR! 418 I'm a teapot: npm@latest
    
    4 回复  |  直到 6 年前
        1
  •  5
  •   Alexei - check Codidact    6 年前

    https http

     registry=https://registry.npmjs.org/
    
        2
  •  2
  •   Vojtěch Dohnal    6 年前

    嗯,不确定我是否应该删除这篇文章。它与 issue described here 418 I'm a teapot 错误。我已经删除了与代理服务器的线路

    proxy=http://xxx.xxx.cz:3128/
    

    .npmrc 配置文件(在用户文件夹中),因此只保留

    registry=http://registry.npmjs.org/
    strict-ssl=false 
    

    我承认这个愚蠢的错误信息不再有趣了。

        3
  •  0
  •   Markoni    6 年前

    NPM配置集注册表 https://registry.npmjs.org/

        4
  •  0
  •   Roman Pokrovskij Peterdk    6 年前

    npm set strict-ssl false 
     npm config set registry https://registry.npmjs.org/
    


    npm config set https-proxy http://...:8080 (add server proxy address and your port number)

    npm config set http-proxy http://...:8080 (add server proxy address and your port number)