Vercel Blob Explorer is a small Electron-based storage client for Vercel Blob Storage. It makes browsing and managing assets easier by providing a desktop UI to list, upload, download, create and delete files/folders and view basic storage metadata and stats.
- Authenticate with a Vercel Blob token
- List folders and files (folded and expanded modes)
- Upload single files or entire folders (preserves folder structure)
- Download single files or entire folders (folder downloads are zipped)
- Create and delete folders/files
- View file metadata and storage statistics
- Progress UI and native file dialogs (Electron)
- Electron (electron-forge)
- Vite + React + TypeScript
- @vercel/blob SDK
- Tailwind CSS
- adm-zip, axios, electron-log
- Node.js (16+ recommended)
- Yarn or npm
- A Vercel token with access to your Vercel Blob storage
Using yarn:
yarn install
yarn startUsing npm:
npm install
npm run startCommon scripts (defined in package.json):
- start — Run the app in development
- package — Create platform packages (electron-forge)
- make — Build distributables
- make-windows — Build Windows distributable
- publish — Publish via electron-forge
- lint — Run ESLint
Build or package using electron-forge:
# package (cross-platform)
yarn package
yarn make
# Windows-specific build
yarn make-windowsOr use npm equivalents:
npm run package
npm run make- Launch the app.
- Enter your Vercel Blob token when prompted.
- Browse the storage, upload/download files or folders, create/delete folders, and view metadata or storage stats.
Notes:
- Uploads use streaming/multipart to support large files.
- Folder downloads are assembled in a temporary directory then zipped for the user.
- The app communicates with the main process via IPC handlers and uses native dialogs for file selection and saves.
Contributions, issues and pull requests are welcome. Before submitting:
- Follow TypeScript and ESLint rules (run
yarn lint). - Keep changes focused and documented.
MIT — see the LICENSE file.
Built by coditive AG. Uses @vercel/blob SDK and electron-forge.