npm WARN registry Unexpected warning for https://registry.npmjs.org/:

前端 未结 6 2191
我在风中等你
我在风中等你 2021-02-11 08:05

guys I am facing a strange problem here that my git-bash and my terminal when I am trying to use npm install I git this error my error message

some guy told me to clear

6条回答
  •  失恋的感觉
    2021-02-11 08:33

    Step 1: Delete package-lock.json file from your project

    Step 2: If your npm version is 5 and above. Then run the following command

    npm cache verify
    

    Step 3: Then run your parcel bunder

    npm install -g parcel-bundler  
    

    or

    npm install --save-dev parcel-bundler babel-preset-env 
    

    Hopefully it should work.

提交回复
热议问题