当我尝试使用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
答案 0 :(得分:8)
试试这个。
转到终端。
更改要创建文件的目录位置。
cd your_destination_folder
输入npm init
并按Enter键。
要求name, version, description, entry point, test command, git repository, keywords, author, license
。传递这些价值观。
然后提示Is this ok? (yes)
。输入yes
。
Hurray,您的package.json
文件已创建。
答案 1 :(得分:0)
您正在npm install init
而不是npm init
。只需检查npm <something>
是否与npm install <something>