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-slim-image-viewer

v0.2.0

Published

Slim image viewer for React

Downloads

7

Readme

React Slim Image Viewer

Display images in a full-screen modal, with left and right navigation to switch between several images. Supports keyboard navigation and mouse scroll. Tiny library with zero dependencies (except React).

This React component is heavily inspired by (aka copied from) react-simple-image-viewer by specter256, thanks for your work Alexander!

screenshot showing react-slim-image-viewer

The screenshot above shows what this component looks like with default styling. The "prev" navigation arrow is highlighted because my mouse cursor is hovering it. You can change the name of the CSS classes used to disable the default styles if you want to provider your own. Or you can pass in a styles prop to customize the styles. Your choice.

You can see a usage example here: https://github.com/Tobbe/react-slim-image-viewer/blob/main/src/App.tsx

Installation

npm install react-slim-image-viewer

or

yarn add react-slim-image-viewer

API

| Property | Type | Description | | :------------ | :--------- | :------------------------------------------------------------------------------- | | src | string[] | Array of image URLs | | currentIndex | number | Index of image in src property which will be shown first when viewer is opened | | onClose | function | Callback which will be called when viewer will closed | | styles | RsivStyles | Custom styles for all html elements of the modal window | | baseClassName | string | Change the base part of the css class name. This will disable built-in styles |

Shortcuts

| Shortcut | Description | | :-------------- | :------------------------------ | | Escape | Close the viewer | | Right Arrow / l | Next image | | Left Arrow / h | Previous image | | Mouse wheel | Scrolling previous / next image |

Contributing

PRs and issue reports are welcome!

Testing pre-release version

  1. npm run build:lib
  2. Copy the built files to where you want to use them. Example (standing in a project that you want to test the new version in): cp -r ../react-slim-image-viewer/lib/* node_modules/react-slim-image-viewer/