Heim > Fragen und Antworten > Hauptteil
Was ich jetzt habe, ist ein Projekt ohne node_modules, aber mit package.json darin. Wie kann ich node_modules basierend auf dieser Datei wiederherstellen??
PHP中文网2017-06-28 09:28:58
在你项目目录下打开命令行,执行npm install
会自动生成node_modules文件。
不过我现在一般用cnpm(淘宝镜像),安装速度快一些。
如果你想要使用cnpm安装的话,先执行npm install -g cnpm --registry=https://registry.npm.taobao.org
然后运行cnpm install