Last active
November 18, 2019 01:36
-
-
Save wmakeev/7b4020121914407e2f40716b0d938042 to your computer and use it in GitHub Desktop.
npm #npm #git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.npmjs.com/cli/install | |
# 1 | |
npm install <protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish>] | |
## Examples | |
npm install git+https://[email protected]/visionmedia/express.git | |
npm install git+https://[email protected]/visionmedia/express.git#branch | |
# 2 | |
npm install <githubname>/<githubrepo>[#<commit-ish>] | |
npm install github:<githubname>/<githubrepo>[#<commit-ish>] | |
## Examples | |
npm install mygithubuser/myproject | |
npm install github:mygithubuser/myproject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment