
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
gcs-browser-upload-metadata
Advanced tools
Resumable, chunked uploads to Google Cloud Storage from the browser
Chunked, pausable, recoverable uploading to Google Cloud Storage directly from the browser.
This package is forked from gcs-browser-upload. It adds the possibility of adding custom metadata to the uploaded object.
gcs-browser-upload
localStorage
once succesfully uploadedgcs-browser-upload
. The file will be validated against the stored chunk checksums to work out if the file is the same and where to resume from.gcs-browser-upload
will continue uploading from where it left off.pause
method can be called to delay uploading the remaining chunks. The current chunk will be finished. unpause
can then be used to continue uploading the remaining chunks.There is a full example available at example/example-client
.
import Upload from "gcs-browser-upload";
let input = document.getElementById("fileInput");
let pause = document.getElementById("pause");
let unpause = document.getElementById("unpause");
let upload = null;
input.addEventListener("change", async () => {
upload = new Upload({
id: "foo",
url: "https://www.googleapis.com/..../....",
file: input.files[0],
onChunkUpload: (info) => {
console.log("Chunk uploaded", info);
},
});
try {
await upload.start();
console.log("Upload complete!");
} catch (e) {
console.log("Upload failed!", e);
} finally {
upload = null;
}
});
pause.addEventListener("click", () => {
if (upload) {
upload.pause();
}
});
unpause.addEventListener("click", () => {
if (upload) {
upload.unpause();
}
});
{
id: null, // required - a unique ID for the upload
url: null, // required - GCS resumable URL
file: null, // required - instance of File
chunkSize: 262144, // optional - chunk size must be a multiple of 262144
storage: window.localStorage, // optional - storage mechanism used to persist chunk meta data
contentType: 'text/plain', // optional - content type of the file being uploaded
onChunkUpload: () => {}, // optional - a function that will be called with progress information
metadata: { }, // optional - custom metadata to be added to the object
}
This library requires regeneratorRuntime
to be available globally - it is written in ES7 and makes use of async/await, which gets compiled into generators. You can find out about regenerator-runtime here.
Various errors are thrown if something goes wrong during uploading. See src/errors.js for the different types. These are exported as a property on the Upload
class.
make bootstrap // install dependencies
make test // run tests
make test-watch // continuously run tests
FAQs
Resumable, chunked uploads to Google Cloud Storage from the browser
The npm package gcs-browser-upload-metadata receives a total of 4 weekly downloads. As such, gcs-browser-upload-metadata popularity was classified as not popular.
We found that gcs-browser-upload-metadata demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.