npm WARN install Refusing to install hapi as a dependency of itself

后端 未结 5 1150
傲寒
傲寒 2020-12-14 14:35

I tried to do the following (per instructions from official site):

  • mkdir hapi && cd hapi
  • npm init
  • npm
5条回答
  •  一生所求
    2020-12-14 15:05

    The name of your module is same as the module you are trying to install. NPM thinks that you are installing the module to itself. Change the name of your module and it will install perfectly.

提交回复
热议问题