Skip to main content
Question

Getting Vanilla JS Web SDK 2.0 app to appear on Tools, Media and Integrations

  • December 15, 2025
  • 0 replies
  • 2 views

Forum|alt.badge.img

I am attempting to test a simple Web SDK 2.0 app that listens for changes to rectangles and makes calls to a REST API.  I cannot get the app to appear on the Tools, Media and Integrations menu.

ATTEMPT #1:
I figured that, since I did not create any UI elements, I did not need anything as heavyweight as Vite.  So I just wrote index.js with my code, wrote a simple index.html (that loaded miro.js in <head> and index.js in <body>) and served up index.html as a static from an Express server.  After a couple days of struggling, I reverted to …

ATTEMPT #2:
Fine, I’ll carry the overhead of Vite.  I used create_miro_app to create a template Vanilla JS app, and I overwrote the sample index.js with my own.  The only other change that I made was switching the port in vite.config.js from 3000 and 3001.  My app still does not appear under Tools, Media and Integrations.  What could be missing?