I am installing Experience Builder, follow the instruction at: https://developers.arcgis.com/experience-builder/guide/install-guide/ , but keep getting error. Please help! See attached error message from npm-debug.log:
Thanks!
Solved! Go to Solution.
I figured out solution to my own question. To answer it to myself, and to those may encounter the same issue with me, post solution here.
In this document https://developers.arcgis.com/experience-builder/guide/install-guide Step 8, instruct to run npm ci. Acutally, if you don't have npm ci avaliable on your machine, run npm ci will do nothing. So to new user like me, this document should add a note to guide user to install npm ci properly before go to Step 9. Otherwise, if run npm ci fail (actually, nothing happen), then running npm start (Step 9) will generate errors I posted above.
I did this: After Step 7,
1. Run npm install -g npm @latest under /server folder
2. Follow Step 8: npm ci
3. Follow Step 9: npm start
Follow therest of the document.
Hope this is helpful.
I figured out solution to my own question. To answer it to myself, and to those may encounter the same issue with me, post solution here.
In this document https://developers.arcgis.com/experience-builder/guide/install-guide Step 8, instruct to run npm ci. Acutally, if you don't have npm ci avaliable on your machine, run npm ci will do nothing. So to new user like me, this document should add a note to guide user to install npm ci properly before go to Step 9. Otherwise, if run npm ci fail (actually, nothing happen), then running npm start (Step 9) will generate errors I posted above.
I did this: After Step 7,
1. Run npm install -g npm @latest under /server folder
2. Follow Step 8: npm ci
3. Follow Step 9: npm start
Follow therest of the document.
Hope this is helpful.