View ConfigureForGitHubPackage
# 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 |