我刚刚遵循这些命令:
Node.js Error: Cannot find module 'request'
npm init
npm install --save request
node app.js
现在当我进入我的项目目录时,我的所有文件都消失了。反正有没有让他们回来???
答案 0 :(得分:1)
为了清除您的想法,以下命令不会删除文件。
npm init // Initialises the npm in your directory and creates package.json file.
npm install --save package_name // Install package in your directory in the node_module folder.
所以,当然,你已经做了其他事情,这导致目录删除或消失。
我建议您检查垃圾。
您可以发布您使用的命令的历史记录吗?也许这会帮助我理解究竟发生了什么。