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

react-files-preview

v2.4.0

Published

A file view component for React apps with images preview, image editing, slider, download option and more.

Downloads

304

Readme

react-files-preview

Netlify Status codeql npm

react-files-preview

A file view component for react.

Installation

npm i react-files-preview

🚀 Demo

https://react-files-preview.netlify.app/

Usage

import { ReactFilesPreview } from 'react-files-preview'
import 'react-files-preview/dist/style.css'  /* import css file*/

function App() {
  return (
    <>
      <ReactFilesPreview />
    </>
  )
}

export default App

Props

| Name | Type | Default | Description | | ------------ | --------- | ------------ | --------- | | files | File[] | [] | Pass array of file objects for default files | | url | string | null | Set image by passing image URL | | downloadFile | boolean | true | Enables file download | | removeFile | boolean | true | Show file remove icon on file hover | | showFileSize | boolean | true | Show file size under files | | showSliderCount | boolean | true | Show slides count under file slider | | disabled | boolean | false | If true, prevents user to add files by disabling the component | | multiple | boolean | true | Accepts one or more files | | accept | string | | Comma-separated lists of file types. See MIME Types | | maxFileSize | number | | Maximum allowed file size in bytes e.g. 1024 x 1024 x 5 == 5MB | | maxFiles | number | | Maximum files allowed to be added | | width | string | basis-11/12 | Tailwind CSS flex-basis class https://tailwindcss.com/docs/flex-basis | | height | string | | Tailwind CSS height class https://tailwindcss.com/docs/height | | fileWidth | string | w-44 | Tailwind CSS width class https://tailwindcss.com/docs/width | | fileHeight | string | h-32 | Tailwind CSS height class https://tailwindcss.com/docs/height | | getFile | func | | Returns all current files | | onChange | func | | Returns selected file(s) | | onRemove | func | | Returns the removed file | | onError | func | | Returns error message as string | | onClick | func | | Returns file on click |