<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Custom Widgets not showing in Experience Builder Custom Widgets</title>
    <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168389#M16</link>
    <description>&lt;P&gt;I'm assuming you have run npm cli and npm start as shown in the&lt;A href="https://developers.arcgis.com/experience-builder/guide/install-guide/#client-install" target="_self"&gt; in the docs&lt;/A&gt;. Can you send screenshots of the cmd windows?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Apr 2022 15:39:37 GMT</pubDate>
    <dc:creator>PhilLarkin1</dc:creator>
    <dc:date>2022-04-27T15:39:37Z</dc:date>
    <item>
      <title>Custom Widgets not showing</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168356#M15</link>
      <description>&lt;P&gt;I am new to the EB developer and having a devil of a time with something that is likely a foolish mistake. I have done the following:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Installed node.js installed (v 16.15.0)&lt;/LI&gt;&lt;LI&gt;Downloaded, extracted, and configured the EB files (v 1.8)&lt;/LI&gt;&lt;LI&gt;Successfully started the localhost:3001&lt;/LI&gt;&lt;LI&gt;Followed the tutorial to create the simple hello world starter-widget&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;In the cmd window I crtl+c then start npm for the client folder&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Yet when I go and create a new experience (the blank scrolling as instructed), no where in the widgets is a "starter-widget". I've also closed the sever run and restarted it and redone the process. I've downloaded their files and my folder structure and file formats are all exactly the same.&lt;/P&gt;&lt;P&gt;Any hints on where I could look to see what I may be doing wrong would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 15:07:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168356#M15</guid>
      <dc:creator>Jon-PaulMcCool</dc:creator>
      <dc:date>2022-04-27T15:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widgets not showing</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168389#M16</link>
      <description>&lt;P&gt;I'm assuming you have run npm cli and npm start as shown in the&lt;A href="https://developers.arcgis.com/experience-builder/guide/install-guide/#client-install" target="_self"&gt; in the docs&lt;/A&gt;. Can you send screenshots of the cmd windows?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 15:39:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168389#M16</guid>
      <dc:creator>PhilLarkin1</dc:creator>
      <dc:date>2022-04-27T15:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widgets not showing</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168423#M17</link>
      <description>&lt;P&gt;Thank you! I had not run npm ci for the server! Now, I can continue with making other, newer mistakes.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 16:18:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168423#M17</guid>
      <dc:creator>Jon-PaulMcCool</dc:creator>
      <dc:date>2022-04-27T16:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widgets not showing</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168434#M18</link>
      <description>&lt;P&gt;I frequently forget to run npm cli for client or server or both.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 16:28:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1168434#M18</guid>
      <dc:creator>PhilLarkin1</dc:creator>
      <dc:date>2022-04-27T16:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widgets not showing</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1200742#M41</link>
      <description>&lt;P&gt;me too &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I use now this script for don't forget this,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;if exist ArcGISExperienceBuilder/client/node_modules\ (
	cmd /c start powershell -noexit -command "cd ArcGISExperienceBuilder\client; npm start"
	cmd /c start powershell -noexit -command "cd ArcGISExperienceBuilder\server; npm start"
) else (
	cmd /c start powershell -noexit -command "cd ArcGISExperienceBuilder\client; npm ci; npm start"
	cmd /c start powershell -noexit -command "cd ArcGISExperienceBuilder\server; npm ci; npm start"
)
start http://localhost:3000&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;from&amp;nbsp;&lt;A href="https://gavinr.com/quick-start-script-arcgis-experience-builder/" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 11:02:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1200742#M41</guid>
      <dc:creator>GiulioMol</dc:creator>
      <dc:date>2022-08-09T11:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Widgets not showing</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1525060#M371</link>
      <description>&lt;P&gt;I followed these steps and my `starter-widget` is still not showing.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 13:56:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/custom-widgets-not-showing/m-p/1525060#M371</guid>
      <dc:creator>moward12</dc:creator>
      <dc:date>2024-08-21T13:56:31Z</dc:date>
    </item>
  </channel>
</rss>

