Can the ArcGIS Experience Builder (Dev Edition) be uninstalled without uninstalling Node.js?
I tried using the npm uninstall command but that didn't work.
Solved! Go to Solution.
Just delete the ArcGISExperienceBuilder folder!
When you set up to use EB, you used npm-ci to add the necessary packages to the EB directory. But Node itself is installed in a totally separate directory, and will not be affected by this.
If you really want to get into the weeds, read through the npm docs to see what npm-ci is actually doing, and then look at the contents of the package-lock.json file.
No clue... but from this document, the worst case scenario would be reinstalling Node.js from the link in this thread
Get Started with ArcGIS Experience Builder Develop... - Esri Community
Just delete the ArcGISExperienceBuilder folder!
When you set up to use EB, you used npm-ci to add the necessary packages to the EB directory. But Node itself is installed in a totally separate directory, and will not be affected by this.
If you really want to get into the weeds, read through the npm docs to see what npm-ci is actually doing, and then look at the contents of the package-lock.json file.