Skip to content

Instantly share code, notes, and snippets.

@hrdtbs
Last active September 15, 2019 05:34
Show Gist options
  • Save hrdtbs/d4e33382033175c14071bea389d25a6b to your computer and use it in GitHub Desktop.
Save hrdtbs/d4e33382033175c14071bea389d25a6b to your computer and use it in GitHub Desktop.
Githubレポジトリをnpmでpackageとしてインストールする方法。Install repositories as npm package from github repository
# 構文
npm install github:[user|organization]/[repository]#[branch|tag|commit]
# 例文
npm install github:hrdtbs/hello-world#build
## *私が試した限りではbranch、tag、commitはorでした。要確認。
# セマンティックバージョニング
npm install github:[user|organization]/[repository]#semver:^X.Y.Z
# yarnでも出来るよ
yarn add github:[user|organization]/[repository]#[branch|tag|commit]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment