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

node-folder-gallery

v0.1.8

Published

Display a gallery of images and folders with thumbnails using Node. Allows for deep linking to specific folders and images which show EXIF data from the file. Uses ExpressJS, EJS, Imagemagick, EXIF, and Memory Cache.

Downloads

14

Readme

Node Folder Gallery

Display a gallery of images and folders with thumbnails using Node. Allows for deep linking to specific folders and images which show EXIF data from the file. Uses ExpressJS, EJS, Imagemagick, EXIF, and Memory Cache.

Demo

DEMO

CodeSandbox

Features:

  1. Automatic discovery of sub-folders and images within your gallery folder.
  2. Album view for folders, and Photo view for individual images.
  3. Easy to style with your own CSS.
  4. Photo information embedded in the file (EXIF) will be displayed on the photo page.
  5. Support for folders/albums with the # symbol, helpful for collections of items that are numbered or duplicate.
  6. Image filenames will automatically be named after the folder with a sequential # following each image.

Dependencies:

  1. ExpressJS to serve pages and handle requests for thumbnails.
  2. Imagemagick to create thumbnails.
  3. Exif to read image metadata.
  4. Memory Cache to save generated thumbnails for performance reasons.

Run

To run demo locally:

  1. Run git clone https://github.com/scottcanoni/node-folder-gallery.git
  2. Run cd ./node-folder-gallery
  3. Run yarn
  4. Run yarn start

then open a browser to http://localhost:3000/gallery.

Integrate

Node Folder Gallery is an Express Middleware that you connect to your existing project or use it to start a new project easily.

  1. Run yarn add node-folder-gallery or npm install node-folder-gallery
  2. Copy the contents of the folder ./example to your project.
  3. Fill the directory named ./gallery with your own photos or folders of photos.
  4. Optionally modify the file named index.js to add your own title, example below.
  5. Run node ./index.js

index.js

const express = require('express');
const nodeFolderGalleryMiddleware = require('node-folder-gallery');

const app = express();
app.set('view engine', 'ejs');
app.use(express.static('./'));

const galleryDir = 'gallery';
const title = 'My Action Figure Collection';

app.use(`/${galleryDir}`, nodeFolderGalleryMiddleware({
    staticFiles: `${galleryDir}`,
    urlRoot: galleryDir,
    title,
}), function (req, res, next) {
    console.log(`Returning response for ${req.originalUrl}`);
    return res.render(galleryDir, {
        galleryHtml: req.html,
        urlRoot: galleryDir,
        title,
    });
});

app.listen(3000, 'localhost');

console.log(`Web server listening on http://localhost:3000/${galleryDir}`);

ImageMagick

Node Folder Gallery requires ImageMagick to create thumbnails.

For Windows, select the specific imagemagick installer for your system, e.g., http://sourceforge.net/projects/imagemagick/files/6.8.9-exes/ImageMagick-6.8.9-4-Q16-x64-dll.exe/download

For Mac, install imagemagick from: http://www.imagemagick.org/script/binary-releases.php#macosx

  1. Install imagemagick
  2. Make sure that imagemagick tools are available on system path (e.g., you can test if you can run "convert.exe" from CMD)
  3. Restart cygwin, CMD or whatever you use to fire up node.js

Future Ideas

  • Config flag for disabling of the friendly incrementing image name based on directory name
  • Config flag to not return styles

Notes

I created this because I needed my own image gallery organized by folders of images for my own collection. I found node-gallery, but it didn't work for me fully, and I noticed it hadn't been updated in over 8 years plus it had opened pull requests and vulnerable dependencies.

Thus, Node Folder Gallery was born.

The images used in this repo are all from the Public Domain and are used as an example. If the website that provided these to me lied, let me know and I can swap them out.