Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 nodejs 的新手,我正在尝试使用npm init命令创建 node js 项目,但它在版本处停止。有人可以帮忙吗?
下面是错误:
随时按 ^C 退出。 名称:(node_init) 版本:(1.0.0)
这是最新版本的错误。在修复之前,您可以使用npm init -f作为解决方法。
您还可以使用 npm init --yes 或 npm init -y
npm init --yes
npm init -y
npm 使用默认的 package.json 值初始化项目,或者
npm init -f
使用 --force
参考:https ://docs.npmjs.com/cli/init