npm init没有在我的mac上创建package.json

Ame*_* Ra 2 json node.js npm

当我尝试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
Run Code Online (Sandbox Code Playgroud)

怎么了?我到处寻找,我找不到答案.这是我运行以下命令时得到的结果:

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
Run Code Online (Sandbox Code Playgroud)

Moh*_*dey 8

试试这个.

  1. 去终端.

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

    cd your_destination_folder

  3. 类型npm init,然后按回车.

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

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

Hurray,您的package.json文件已创建.

终端快照