feat(devtools): add KV, Blob, Cache management UI#776
Open
onmax wants to merge 14 commits intonuxt-hub:mainfrom
Open
feat(devtools): add KV, Blob, Cache management UI#776onmax wants to merge 14 commits intonuxt-hub:mainfrom
onmax wants to merge 14 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
Member
|
Looks good! My feedback after seeing the video:
|
d8d8d37 to
2081e1d
Compare
Contributor
Author
|
@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
reviewed
Feb 2, 2026
Member
Contributor
Author
|
@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! |
Contributor
Author
|
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

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