troubleshooting - BlueOakJS/generator-blueoak GitHub Wiki
- If
yo blueoakfails to install an npm package:- Verify that all prerequisites are installed and up to date.
- run
npm config list- Is your registry setting correct? i.e.
https://registry.npmjs.org/- If not, run
npm config set registry https://registry.npmjs.org/to change registry back to default
- If not, run
- navigate to
[project_Name]/client - run
npm installto attempt to install missing packages from earlier- Note: You may need to run
npm loginin order to install scoped packages (e.g@pointsource/blueoak-build). This will require an npmjs.org account. Create an account if necessary and use your credentials when prompted bynpm login.
- Note: You may need to run
- Is your registry setting correct? i.e.
Note: You will need to setup your github account with an ssh key if you have not previously done so. See: https://help.github.com/articles/generating-ssh-keys/ for information and instructions. Try running a git command that requires SSH on the command line to verify that this issue is resolved.