npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

file-chunks-tools

v2.0.1

Published

A library for handling file uploads with chunking, hashing, and concurrent upload management.

Downloads

1,352

Readme

FileChunksTools Library

FileChunksTools is a powerful and flexible library designed to handle the splitting, processing, and uploading of large files in chunks. This library provides a PromisePool implementation to manage and control concurrent operations, ensuring efficient use of resources and smooth handling of large file uploads.

Table of Contents

Installation

To install the FileChunksTools library, use the following command:

npm install file-chunks-tools

Usage

Splitting Files into Chunks

The currentFileChunks function is used to split a file into multiple chunks based on a specified chunk size.

Generating File Hashes

The library provides functions to generate unique identifiers (UUIDs) and hashes for files. These can be used to verify the integrity of file uploads.

Managing Concurrent Uploads

The PromisePool class allows you to manage and control the concurrent execution of tasks, such as uploading file chunks. You can set the maximum number of concurrent tasks to optimize performance.

API Reference

currentFileChunks

Splits the given file into multiple chunks of the specified size.

Parameters:

  • file: File - The file to be split.
  • customChunkSize?: number - Custom size of each chunk (in MB). If not provided, the function automatically determines the chunk size.

Returns:

  • Promise<FileChunkResult> - An object containing the file chunks and chunk size.

generateUUID

Generates a Universally Unique Identifier (UUID) version 4.

Returns:

  • string - A string representing the generated UUID.

generateSmallFileHash

Generates a SHA-256 hash for small files (up to 2GB).

Parameters:

  • file: File - The file for which to generate the hash.

Returns:

  • Promise<string> - The generated hash as a string.

generateFileHash

Generates a hash for the given file, processing it in chunks.

Parameters:

  • file: File
  • customChunkSize?: number

Returns:

  • Promise<{ hash: string, chunkSize: number }> - A promise that resolves to an object containing the hash and chunk size.

PromisePool

Controls the execution of asynchronous tasks with a specified level of concurrency.

Constructor Parameters:

  • functions: AsyncFunction[] - Array of task functions to be executed.
  • maxConcurrentTasks: number - Maximum number of concurrent tasks.

Methods:

  • exec<T>(): Promise<T[]> - Executes all asynchronous functions in the task pool.
  • pause(): void - Pauses task execution.
  • resume(): void - Resumes task execution.
  • clear(): void - Clears the task queue.
  • addTasks(newTasks: AsyncFunction[]): void - Adds new tasks to the queue.

uploadChunksWithPool

Controls the concurrent upload of file chunks using PromisePool.

Parameters:

  • options: UploadOptions - Configuration options for file upload.
  • cb: UploadCallback - Callback function to handle the upload of a single file chunk.

Returns:

  • PromisePool - Returns the instance of PromisePool managing the upload tasks.

Examples

Example: Splitting a File into Chunks

This example demonstrates how to use the currentFileChunks function to split a file into multiple chunks:

import { currentFileChunks } from "file-chunks-tools";

async function splitFile(file: File) {
  // Split the file into chunks
  const { fileChunks, chunkSize } = await currentFileChunks(file);

  console.log("File has been split into the following chunks:");
  fileChunks.forEach((chunk, index) => {
    console.log(`Chunk ${index + 1} of size ${chunk.size} bytes`);
  });

  console.log("Chunk Size:", chunkSize);
}

// Example usage with a file input
const fileInput = document.querySelector('input[type="file"]');
fileInput.addEventListener("change", (event) => {
  const file = (event.target as HTMLInputElement).files[0];
  if (file) {
    splitFile(file);
  }
});

Example: Generating a UUID

This example shows how to generate a UUID using the generateUUID function:

import { generateUUID } from "file-chunks-tools";

function generateUniqueIdentifier() {
  const uuid = generateUUID();
  console.log("Generated UUID:", uuid);
}

// Generate and log a UUID
generateUniqueIdentifier();

Example: Generating a Small File Hash

This example illustrates how to generate a SHA-256 hash for a small file (less than 2GB) using generateSmallFileHash:

import { generateSmallFileHash } from "file-chunks-tools";

async function hashSmallFile(file: File) {
  const hash = await generateSmallFileHash(file);
  console.log("Generated hash for the small file:", hash);
}

// Example usage with a file input
const fileInput = document.querySelector('input[type="file"]');
fileInput.addEventListener("change", (event) => {
  const file = (event.target as HTMLInputElement).files[0];
  if (file && file.size < 2 * 1024 * 1024 * 1024) {
    // Ensure file is less than 2GB
    hashSmallFile(file);
  } else {
    console.error("File is too large for this hashing method.");
  }
});

Example: Generating a File Hash in Chunks

This example shows how to generate a hash for a large file using the generateFileHash function, which processes the file in chunks:

import { generateFileHash } from "file-chunks-tools";

async function hashLargeFile(file: File) {
  const { hash, chunkSize } = await generateFileHash(file);

  console.log("Generated hash for the large file:", hash);
  console.log("Chunk Size:", chunkSize);
}

// Example usage with a file input
const fileInput = document.querySelector('input[type="file"]');
fileInput.addEventListener("change", (event) => {
  const file = (event.target as HTMLInputElement).files[0];
  if (file) {
    hashLargeFile(file);
  }
});

Example: Managing Concurrent Uploads with PromisePool

This example demonstrates how to use the uploadChunksWithPool function to manage the concurrent upload of file chunks:

import { currentFileChunks, uploadChunksWithPool } from "file-chunks-tools";

async function uploadFile(file: File) {
  // Step 1: Split the file into chunks
  const { fileChunks, chunkSize } = await currentFileChunks(file);

  // Step 2: Define the upload callback function
  const uploadChunk = async (chunk: Blob, index: number) => {
    console.log(`Uploading chunk ${index + 1} of ${fileChunks.length}`);
    // Simulate an upload request
    await fetch("/upload", {
      method: "POST",
      body: chunk,
    });
  };

  // Step 3: Upload the chunks concurrently using PromisePool
  const pool = uploadChunksWithPool({ fileChunks, maxTasks: 4 }, uploadChunk);

  // Execute the upload tasks
  pool.exec().then(() => {
    console.log("All chunks uploaded successfully!");
  });
}

// Example usage with a file input
const fileInput = document.querySelector('input[type="file"]');
fileInput.addEventListener("change", (event) => {
  const file = (event.target as HTMLInputElement).files[0];
  if (file) {
    uploadFile(file);
  }
});

License

This project is licensed under the MIT License. See the LICENSE file for details.