尝试从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 alex-cory/fasthacks

or

npm i github:alex-cory/fasthacks

基本上:

npm i user_or_org/repo_name

其他回答

不需要做太多;这帮助了我:

Yarn add <git_name>:<github_name>/<Repository_name>.git

例子:

yarn add git@github.com:myGitHub/dynamic-checkbox-input.git

如果你想添加一些特定的提交或分支名称,那么添加#。

例子:

yarn add git@github.com:myGitHub/dynamic-checkbox-input.git#master

例子:

yarn add git@github.com:myGitHub/dynamic-checkbox-input.git#c978U57

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

唯一对我有用的命令是npm i MY_PACKAGE_NAME:MY_REPOSITORY#BRANCH_NAME

试试这个命令:

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

这个命令对我很管用:

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

下面的一段代码为我安装从github存储库:

npm install git+ssh://<your_repository_ssh_clone_link>#<branch_name_if_any>

你可以得到ssh克隆链接如下:

所以对于上面的截图存储库,你可能需要像下面这样导入,

npm install git+ssh://git@github.com:Siddhu2/calculator-chatbot.git#master

master是我的分支,这是可选的,因为我只有一个分支。