feat(devtools): add KV, Blob, Cache management UI#776
feat(devtools): add KV, Blob, Cache management UI#776onmax wants to merge 16 commits intonuxt-hub:mainfrom
Conversation
|
@onmax is attempting to deploy a commit to the NuxtLabs Team on Vercel. A member of the Team first needs to authorize it. |
b256b67 to
0a1fb74
Compare
commit: |
5a77aa2 to
b7cd15f
Compare
b7cd15f to
a96a31f
Compare
|
Looks good! My feedback after seeing the video:
|
d8d8d37 to
2081e1d
Compare
|
@RihanArfan added your feedback :) |
- KV Storage: view, create, edit, delete keys with JSON support - Blob Storage: file browser with folder navigation, upload, preview, drag&drop, context menu, search, sort, grid/table view, multi-select - Cache: inspect Nitro cache entries grouped by handler type - Uses Vite proxy pattern for dev mode, pre-built static SPA for production
427c119 to
f2ead86
Compare
|
@RihanArfan fixed the missing #app imports (useFetch/useRouter/navigateTo) in the devtools client pages. The runtime error you hit should be resolved now. Thanks for the catch! |
|
Switched the NuxtHub DevTools storage tabs (KV/Blob/Cache) to use the hosted UI embedded as an iframe from hub.nuxt.com/devtools/. The hosted UI calls back into the local app via
|
d8880d8 to
785d0e4
Compare
|
I merged the latest At the moment, the hosted DevTools pages on Is there anything else you would like me to check to help move this PR forward? Also, I'd appreciate guidance on the preferred direction here:
Thank you! |

Summary
Switch NuxtHub DevTools KV/Blob/Cache tabs to a hosted UI loaded via iframe (no separate UI bundle shipped from
@nuxthub/core). Functionality stays the same; only the UI delivery changes.How It Works
hub.nuxt.com.?url=<localOrigin>so the hosted UI can call back into your local app.hub.devtools.appOrigin./api/_hub/*compatibility endpoints + CORS so the hosted UI can callhttp://localhost:<port>/api/_hub/....Limitations
https://...iframes callinghttp://localhost...(mixed content). See nuxt-hub/core#34 (comment).Closes #774
TODO (Before Merge)
hub.nuxt.com(hosted DevTools embed) and test it