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
7
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
Features:
- Automatic discovery of sub-folders and images within your
gallery
folder. - Album view for folders, and Photo view for individual images.
- Easy to style with your own CSS.
- Photo information embedded in the file (EXIF) will be displayed on the photo page.
- Support for folders/albums with the
#
symbol, helpful for collections of items that are numbered or duplicate. - Image filenames will automatically be named after the folder with a sequential # following each image.
Dependencies:
- ExpressJS to serve pages and handle requests for thumbnails.
- Imagemagick to create thumbnails.
- Exif to read image metadata.
- Memory Cache to save generated thumbnails for performance reasons.
Run
To run demo locally:
- Run
git clone https://github.com/scottcanoni/node-folder-gallery.git
- Run
cd ./node-folder-gallery
- Run
yarn
- 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.
- Run
yarn add node-folder-gallery
ornpm install node-folder-gallery
- Copy the contents of the folder
./example
to your project. - Fill the directory named
./gallery
with your own photos or folders of photos. - Optionally modify the file named
index.js
to add your own title, example below. - 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
- Install imagemagick
- Make sure that imagemagick tools are available on system path (e.g., you can test if you can run "convert.exe" from CMD)
- 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.