## Pull Repo ``` [ec2-user@ip-172-31-26-252 test]$ git clone git@github.com:edm-org/chrome-extensions-pragmalabs.git Cloning into 'chrome-extensions-pragmalabs'... The authenticity of host 'github.com (20.248.137.48)' can't be established. ECDSA key fingerprint is SHA256:p2QAMXNIC1TJYWeIOttrVc98/R1BUFWu3/LiyKgUfQM. ECDSA key fingerprint is MD5:7b:99:81:1e:4c:91:a5:0d:5a:2e:2e:80:13:3f:24:ca. Are you sure you want to continue connecting (yes/no)? y Warning: Permanently added 'github.com,20.248.137.48' (ECDSA) to the list of known hosts. remote: Enumerating objects: 228, done. remote: Counting objects: 100% (23/23), done. remote: Compressing objects: 100% (18/18), done. remote: Total 228 (delta 6), reused 14 (delta 5), pack-reused 205 Receiving objects: 100% (228/228), 24.93 MiB | 6.70 MiB/s, done. Resolving deltas: 100% (73/73), done. [ec2-user@ip-172-31-26-252 test]$ cd chrome-extensions-pragmalabs/ ``` ## Attempt NPM install with no credentials ``` [ec2-user@ip-172-31-26-252 chrome-extensions-pragmalabs]$ npm install npm notice npm notice New minor version of npm available! 8.15.0 -> 8.19.2 npm notice Changelog: https://github.com/npm/cli/releases/tag/v8.19.2 npm notice Run npm install -g npm@8.19.2 to update! npm notice npm ERR! code E401 npm ERR! 401 Unauthorized - GET https://npm.pkg.github.com/download/@pragmalabs/ext-craftwerk/1.0.0/90edeadaa60e5aa76dc10bbc72f6484862b4d789 - unauthenticated: User cannot be authenticated with the token provided. npm ERR! A complete log of this run can be found in: npm ERR! /home/ec2-user/.npm/_logs/2022-10-11T00_35_10_765Z-debug-0.log ``` ## Edit NPM file, add Jacek token ``` [ec2-user@ip-172-31-26-252 chrome-extensions-pragmalabs]$ vim .npmrc <EDITED NPMRC FILE> ``` ## Attempt install again ``` [ec2-user@ip-172-31-26-252 chrome-extensions-pragmalabs]$ npm install npm WARN deprecated core-js-pure@3.21.1: core-js-pure@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js-pure. added 324 packages, and audited 328 packages in 19s 77 packages are looking for funding run `npm fund` for details 1 moderate severity vulnerability To address all issues, run: npm audit fix Run `npm audit` for details. [ec2-user@ip-172-31-26-252 chrome-extensions-pragmalabs]$ ```