尝试从GitHub安装模块会导致以下错误:

package.json上的ENOENT错误。

容易复制使用express:

NPM安装https://github.com/visionmedia/express抛出错误。

NPM安装快速工程。

为什么我不能从GitHub安装?

下面是控制台输出:

npm http GET https://github.com/visionmedia/express.git
npm http 200 https://github.com/visionmedia/express.git
npm ERR! not a package /home/guym/tmp/npm-32312/1373176518024-0.6586997057311237/tmp.tgz
npm ERR! Error: ENOENT, open '/home/guym/tmp/npm-32312/1373176518024-0.6586997057311237/package/package.json'
npm ERR! If you need help, you may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <npm-@googlegroups.com>

npm ERR! System Linux 3.8.0-23-generic
npm ERR! command "/usr/bin/node" "/usr/bin/npm" "install" "https://github.com/visionmedia/express.git"
npm ERR! cwd /home/guym/dev_env/projects_GIT/proj/somename
npm ERR! node -v v0.10.10
npm ERR! npm -v 1.2.25
npm ERR! path /home/guym/tmp/npm-32312/1373176518024-0.6586997057311237/package/package.json
npm ERR! code ENOENT
npm ERR! errno 34
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR!     /home/guym/dev_env/projects_GIT/proj/somename/npm-debug.log
npm ERR! not ok code 0

当前回答

这对我很有用,而且打字也少了。

npm i github:<UserName>/<RepoName>

package.json

{
    "dependencies": {
        "name": "github:<UserName>/<RepoName>"
    }
}

其他回答

简单:

npm install *GithubUrl*.git --save

例子:

npm install https://github.com/visionmedia/express.git --save

这些方法在npm的安装文档以及这里的许多其他答案中都有很好的介绍。

npm install git+ssh://git@github.com:<githubname>/<githubrepo.git[#<commit-ish>]
npm install git+ssh://git@github.com:<githubname>/<githubrepo.git>[#semver:^x.x]
npm install git+https://git@github.com/<githubname>/<githubrepo.git>
npm install git://github.com/<githubname>/<githubrepo.git>
npm install github:<githubname>/<githubrepo>[#<commit-ish>]

然而,最近发生了一些值得注意的变化,即npm添加了准备脚本来取代预发布脚本。这修复了一个长期存在的问题,即通过Git安装的模块没有运行预发布脚本,因此没有完成模块发布到npm注册表时发生的构建步骤。参见运行预发布Git URL包#3055。

当然,模块作者需要更新他们的包。Json文件使用新的准备指令开始工作。

Peter Lyons给出的目前排名第一的答案与最近的NPM版本无关。例如,使用这个回答中批评的相同命令现在是可以的。

npm install https://github.com/visionmedia/express

如果您有持续的问题,这可能是您正在使用的任何包的问题。

试试这个命令:

 npm install github:[Organisation]/[Repository]#[master/BranchName] -g

这个命令对我很管用:

 npm install github:BlessCSS/bless#3.x -g

你可以通过npm install命令直接安装一个GitHub存储库,就像这样:

npm install https://github.com/futurechallenger/npm_git_install.git --save

注意:在npm命令将要安装的存储库中:

根据Dan Dascalescu的评论,也许你必须在你的存储库中有一个dist文件夹。 你一定要打包。Json在你的存储库!我忘记加了。