cloud-storage-web

Upload, download, and manage CloudBase storage files via the Web SDK.

Updated Mar 18, 2026
One-click install
npx skills add https://github.com/derek2035/talkbook --skill cloud-storage-web-derek2035
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloud-storage-web
Source: https://github.com/derek2035/talkbook/tree/main/.agents/skills/cloudbase/references/cloud-storage-web
Command: npx skills add https://github.com/derek2035/talkbook --skill cloud-storage-web-derek2035

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This guide enables browser-based CloudBase storage operations using the Web SDK to upload, download, and manage storage objects directly from web applications, reducing reliance on backend storage APIs.

Core Features & Use Cases

  • Upload files from a web browser to CloudBase storage using the @cloudbase/js-sdk.
  • Generate temporary, secure URLs for private files with getTempFileURL.
  • Delete and manage storage objects, and trigger browser downloads when needed.
  • Real-world use cases include client-side image and document uploads, quick prototyping, and web apps requiring client-side storage interactions.

Quick Start

Initialize the CloudBase Web SDK in your web app and start uploading files to CloudBase storage.

Frequently Asked Questions about cloud-storage-web

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I upload files to CloudBase storage from a web browser?

Generate temporary secure URLs for private files using the app.getTempFileURL method from the CloudBase Web SDK. This provides secure, time-limited access to private storage objects directly from your web application.

Can I manage and delete cloud storage objects directly from my web app?

Manage and delete cloud storage objects directly from your web app using the app.deleteFile method provided by the CloudBase Web SDK. This allows frontend workflows to handle object management and deletion without server-side logic.

How do I trigger a file download in the browser using the CloudBase Web SDK?

Trigger a browser file download by calling app.downloadFile from the CloudBase Web SDK. This handles fetching the storage object and initiating the download process directly within your client-side web workflows.

Do I need to configure security domains when initializing the CloudBase Web SDK for file uploads?

Configuring security domains is required when initializing the CloudBase Web SDK for file uploads. Proper SDK initialization and security-domain considerations ensure your web app securely interacts with CloudBase storage operations.