尝试从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

当前回答

截至2016年9月,从普通HTTPS GitHub url安装现在可以工作:

npm install https://github.com/fergiemcdowall/search-index.git

你不能对所有的模块都这样做,因为你正在从一个源代码控制系统中读取,它很可能包含无效的/未编译的/有bug的代码。所以需要明确的是(尽管这应该是不言而喻的):鉴于存储库中的代码处于npm可用状态,您现在可以非常愉快地直接从GitHub安装。

2019年10月,我们正经历着“TypeScript/React/Babel峰值”,因此JavaScript编译已经变得相当普遍。如果需要考虑编译,请查看prepare。也就是说,NPM模块不需要编译,并且明智的假设编译不是默认的,特别是对于较旧的节点模块(可能也适用于非常新的、前沿的“ESNext”-y模块)。

其他回答

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

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

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

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

你可以:

npm install git://github.com/foo/bar.git

或者在package.json中:

"dependencies": {
  "bar": "git://github.com/foo/bar.git"
}

还有npm install https://github.com/{USER}/{REPO}/tarball/{BRANCH}来使用不同的分支。

如果你得到这样的东西:

npm犯错!Enoent undefined ls-remote -h -t https://github.com/some_repo/repo.git

确保你更新到最新的npm,并且你也有权限。

有时我需要从特定的分支安装或提交。 为了简单起见,我只使用https://gitpkg.vercel.app/