Skip to content

cjerrington/DisplayDrop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DisplayDrop

A lightweight, self-contained digital signage application for image slideshows. Built with Express, SQLite, and vanilla JS.

Features

  • Dashboard Control Panel — Manage slides, set duration, transitions, and toggle visibility
  • Drag & Drop Upload — Upload multiple images (JPG, PNG, GIF, WEBP) via drag-and-drop or file browser
  • Live File Sync — Automatically detects images added or removed from the public/slides/ folder (configurable)
  • Slide Player — Dedicated /play view with fullscreen support (double-click or press F)
  • Multiple Transitions — Choose from Fade, Slide Left, Slide Right, Push, or Cut transitions
  • Drag-to-Reorder — Sortable table rows for quick playlist arrangement
  • Bulk Actions — Apply duration and transition settings to all slides at once
  • Delete Slides — Remove slides directly from the dashboard (deletes both DB entry and file)
  • Smart Updates — Display view intelligently syncs changes without interrupting playback
  • Zero External DB Server — Uses Node.js built-in node:sqlite with a local displaydrop.db file

Getting Started

npm install
npm start

Open your browser to:

During development, use npm run dev for auto-restart on file changes.

Configuration

  • Port: Set PORT env variable (default: 3000)
  • Live Monitoring: Set LIVE_MONITORING env variable to true or false (default: true) — when enabled, automatically watches the slides directory for changes
  • Slides Directory: public/slides/ — drop images here or use the dashboard uploader
  • Database: displaydrop.db — auto-created on first run

API Endpoints

Method Endpoint Description
GET / Dashboard
GET /play Slide player view
GET /api/slides Get active slides (JSON)
POST /api/update-slides Update slide order, duration, transitions, and active state
POST /api/upload Upload images (multipart form, field: images)
DELETE /api/slides/:id Delete a slide

About

Lightweight digital signage web app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors