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 🙏

© 2026 – Pkg Stats / Ryan Hefner

bye-file

v1.0.2

Published

A sleek, config-driven file upload component with zero fuss and full flexibility. Drag it, drop it, done.

Readme

bye-file

A sleek, config-driven file upload component with zero fuss and full flexibility. Drag it, drop it, done.

A modern, accessible, and highly customizable file upload component library built with React, TypeScript, and Tailwind CSS. Features config-driven customization with full keyboard navigation and screen reader support.

npm version npm downloads

Features

  • 🎨 Multiple Variants - Dropzone, button, and image preview modes
  • 🔧 Config-Driven - JSON-based configuration for easy customization
  • Fully Accessible - Complete keyboard navigation and screen reader support
  • 🎯 TypeScript First - Built with TypeScript for excellent developer experience
  • 📱 Mobile Friendly - Responsive design that works on all devices
  • 🔌 Zero Config - Works out of the box, no setup required

Installation

npm install bye-file

Quick Start

// Import the CSS styles (required)
import "bye-file/styles.css";
import FileUpload from "bye-file";

export default function MyComponent() {
  return (
    <FileUpload
      variant="dropzone"
      multiple={true}
      onFilesChange={(files) => console.log("Selected files:", files)}
    />
  );
}

Configuration Example

import FileUpload from "bye-file";

const config = {
  variant: "image-preview",
  maxFileSize: 5242880, // 5MB
  acceptedFileTypes: [".jpg", ".png", ".gif"],
  multiple: true,
  showPreviews: true,
  labels: {
    dropzoneText: "Drop your images here",
    browseText: "Browse Files",
  },
  theme: {
    size: "lg",
    radius: "lg",
    borderStyle: "dashed",
  },
};

<FileUpload config={config} onFilesChange={handleFiles} />;

API

Props

| Prop | Type | Default | Description | | --------------- | ------------------------------------------- | ------------ | -------------------------------- | | variant | "dropzone" \| "button" \| "image-preview" | "dropzone" | Upload component variant | | multiple | boolean | false | Allow multiple file selection | | config | FileUploadConfig | {} | Configuration object | | onFilesChange | (files: File[]) => void | - | Callback when files are selected |

Configuration

interface FileUploadConfig {
  maxFileSize?: number; // in bytes
  acceptedFileTypes?: string[]; // e.g., ['.jpg', '.png']
  multiple?: boolean;
  variant?: "dropzone" | "button" | "image-preview";
  showPreviews?: boolean;

  labels?: {
    dropzoneText?: string;
    browseText?: string;
    maxSizeText?: string;
  };

  theme?: {
    size?: "sm" | "md" | "lg";
    radius?: "none" | "sm" | "md" | "lg";
    borderStyle?: "solid" | "dashed" | "dotted";
  };
}

Variants

Dropzone

<FileUpload variant="dropzone" multiple={true} />

Button

<FileUpload variant="button" />

Image Preview

<FileUpload
  variant="image-preview"
  config={{ acceptedFileTypes: [".jpg", ".png"] }}
/>

Requirements

  • React >=18
  • Import bye-file/styles.css in your application

TypeScript

This library is built with TypeScript and includes type definitions out of the box.

Links