温馨提示:本文翻译自stackoverflow.com,查看原文请点击:node.js - npm init not creating package.json on my mac
json node.js npm

node.js - npm init在我的Mac上未创建package.json

发布于 2020-04-11 12:42:01

当我尝试使用创建package.json文件时,npm init不断收到以下信息:

npm http GET https://registry.npmjs.org/init
npm http 304 https://registry.npmjs.org/init
npm http GET https://registry.npmjs.org/daemon
npm http 304 https://registry.npmjs.org/daemon
init@0.1.2 node_modules/init
└── daemon@1.1.0

怎么了?我到处都看了,找不到答案。这是我运行以下命令时得到的:

Amens-Mac-mini:~ amenmojara$ npm init =ddd
npm http GET https://registry.npmjs.org/%3Dddd
npm http GET https://registry.npmjs.org/init
npm http 304 https://registry.npmjs.org/init
npm http 404 https://registry.npmjs.org/%3Dddd
npm ERR! 404 '%3Dddd' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, or http url, or git url.

npm ERR! System Darwin 13.0.0
npm ERR! command "/usr/local/Cellar/node/0.10.26/bin/node" "/usr/local/bin/npm" "install" "init"   "=ddd"
npm ERR! cwd /Users/amenmojara
npm ERR! node -v v0.10.26
npm ERR! npm -v 1.4.3
npm ERR! code E404
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/amenmojara/npm-debug.log
npm ERR! not ok code 0

查看更多

提问者
Amen Ra
被浏览
104
Mohit Pandey 2014-02-24 17:09

尝试这个。

  1. 转到终端。

  2. 更改要在其中创建文件的目录位置。

    cd your_destination_folder

  3. 键入npm init,然后按Enter。

  4. 它要求name, version, description, entry point, test command, git repository, keywords, author, license传递这些值。

  5. 然后提示Is this ok? (yes)输入yes

欢呼,您的package.json文件已创建。

终端快照