Skip to content

Instantly share code, notes, and snippets.

@jdcargile
Last active June 19, 2020 21:56
Show Gist options
  • Select an option

  • Save jdcargile/37b45f5d52fef281d8863e114b6a52eb to your computer and use it in GitHub Desktop.

Select an option

Save jdcargile/37b45f5d52fef281d8863e114b6a52eb to your computer and use it in GitHub Desktop.
How to configure repo for GitHub Package Installation
# Create new directory for your project
mkdir my-project
cd my-project
# NPM login using your GitHub username an a PAT (Personal Access Token)
npm login --registry=https://npm.pkg.github.com
# Add .npmrc file to the project directory telling it where to grab your new package
echo 'registry=https://npm.pkg.github.com/control4' > .npmrc
# Install your new package
npm install @control4/[email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment