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

时间:2014-02-24 08:46:16

标签: 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

有什么问题?我到处寻找,我找不到答案。 这是我运行以下命令时得到的结果:

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

2 个答案:

答案 0 :(得分:8)

试试这个。

  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

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

    terminal snapshot

答案 1 :(得分:0)

您正在npm install init而不是npm init。只需检查npm <something>是否与npm install <something>

没别名