Why do Node modules go into .staging folder?

后端 未结 8 1584
轮回少年
轮回少年 2021-01-01 08:41

I have an Electron app that I\'m trying to install node modules for. When I run npm install, it creates the node_modules folder but all the modules

8条回答
  •  没有蜡笔的小新
    2021-01-01 09:31

    This worked for me I moved the project from C drive to other drive and ran the following commands take a backup of older node modules if you are running this and existing project

    npm clear cache --force
    npm update
    

提交回复
热议问题