Tiny Frontend Logo
Posts 0120

On This Page

Resumable File Upload

The cloud storage has become an indispensable file backup and sharing solution in our daily work. But have you ever considered:

how is the resumable upload function implemented after an interruption?

Although JavaScript does not provide us with a built-in feature for this, we can easily solve the problem by following the ideas presented in this article.

What is Resumable File Upload?

Let's begin by understanding what resumable uploads are.

Uploading files, especially large ones, is a task that heavily depends on network stability. Frequent network disconnections and reconnections, such as when on the subway, can disrupt ongoing file uploads, forcing them to restart from the beginning.

Resumable uploads allow us to continue a previous upload task without having to re-upload the parts that have already been completed. This significantly enhances the stability and efficiency of file uploads.

Generate the File ID

The File ID is used to manage the file fragments, since a file is divided into independent parts for separate uploads during the upload process.

Here you can choose any algorithms to generate the value.

const fileId = hash(uploadFileContent);
Subscribe to read the full content

* Free subscribe to enjoy full content access.
* You can cancel anytime with 1-click.

Read Next

0119

Sending Notifications

The Notification API allows web developers to create and display desktop notifications to users.

Sending Notifications
0118

Higher-Order Functions (HOF) in JavaScript

In JavaScript, functions are treated as first-class citizens. We can use functions as values, assign them to variables, pass them as arguments to other functions, or even return them from other functions.

Higher-Order Functions (HOF) in JavaScript
0117

JavaScript Closures

This question frequently arises during interviews. If you're unsure, here is everything you should know!

JavaScript Closures
0116

Ordering Flexible Elements

In many cases, we rely on the flex-direction property to manage the display order of flexible items.

Ordering Flexible Elements
0115

JavaScript: Page Location

Whether you're a seasoned developer or just starting your journey, understanding how to manipulate the web page's location through JavaScript can be a very useful tool in your arsenal.

JavaScript: Page Location
0114

Cookies

As a frontend developer, understanding how cookies work is essential for building robust web applications. In this article, we'll explore the world of browser cookies, demystify their mechanics, and learn how to harness their power in your projects.