• Stars
    star
    151
  • Rank 246,057 (Top 5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 5 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

πŸ“Ί Simple self-hosted digital signage software for turning screens into beautiful content displays

DigitalSignage

πŸ“Ί Simple self-hosted digital signage software for turning screens into beautiful content displays

Outdated Dependencies Travis Build

Screenshots

Digital Display Preview

Screenshot of the display

Administrator Panel: Changing the widget layout

Screenshot of the administrator panel

Administrator Panel: Slides inside a slideshow

Screenshot of the administrator panel

Demo

Use the demo website at http://digitaldisplay.herokuapp.com (username: demo, password: demo)

How to Run:

  1. Set up a MongoDB installation locally (or in the cloud) and create a digitaldisplay database

  2. Run the setup utility using

npm run setup

and specify the URI to your database.

  1. Install dependencies and run the program
npm install
npm run dev

Updating the software

Assuming the software was cloned from this github repository, it is possible to use the included script

npm run update

which pulls the latest stable version of digital-signage from github, installs dependencies and re-builds the software.

Features

  • βœ… Automatic refresh on content change (you should never need to touch a display once set up!)

  • βœ… Totally modular, with a comprehensive widget management system (adding a widget is very simple!)

  • βœ… Multiple built-in widgets to get you started:

    • βœ… Slideshow widget

      Animated screencast of the slideshow widget
    • βœ… Weather widget

      Screenshot of the weather widget
    • βœ… "Congratulations" widget

      Animated screencast of the congratulations widget
    • βœ… Youtube embed widget

    • βœ… Web (iframe) widget

      Screenshot of the web widget
    • βœ… Standalone image widget

      Screenshot of the image widget
    • βœ… Announcements widget

      Screenshot of the announcements widget
    • βœ… List widget (can be used a directory, time sheet, etc.)

      Animated screencast of the list widget
  • βœ… Flexible, responsive widget grid that allows you to drag, drop and resize widgets

  • βœ… Versatile slideshow system that allows multiple slideshows, multiple slide types (images, videos, youtube, web, etc.) inside the same display with variable durations, titles and descriptions for each slide!

  • βœ– Support for multiple displays (in progress)

Adding a new widget

Given the highly modular structure of this program, implementing a new widget is a simple task! Simply follow these easy steps to get started:

  1. Create a new folder inside the ​widgets/​ folder, name it according to your widget's name
 /
  actions/
  api/
  assets/
  components/
  helpers/
  pages/
  styles/
  widgets/
    .
    .
    .
    (new) MyWidget/
    widget_list.js
    base_widget.js
    index.js

  1. Create an index file inside the newly created folder called index.js ​(extending the​ base_widget ​class) as follows:
import BaseWidget from '../base_widget'

export default class MyWidget extends BaseWidget {
  constructor() {
    super({
      name: 'MyWidget',
      version: '0.1',
      icon: ['my-icon'], // Shown in the admin panel
      defaultData: {
         // Your implementation here
      }
    })
  }
}

The widget's icon should come from FontAwesome.

  1. Implement two React components: Options (renders the dialog that will allow the administrator to change the widget’s configuration) and Widget (renders the user-facing side widget that will be displayed on the TV), return them from getter functions that you add to your index.js file:
export default class MyWidget extends BaseWidget {
  // ...

  get Widget() {
    return (<div>Your implementation here</div>)
  }

  get Options() {
    return (<div>Your implementation here</div>)
  }

  // ...
}
  1. Finally, when done implementing the widget, register it by adding its folder’s name to the widgets/widget_list.js​ file
module.exports = ['slideshow', 'weather', 'congrats', 'youtube', 'web',
    'image', 'list', 'announcement', /* new */ 'MyWidget']
  1. Restart the server to see the new widget appear on the administrator panel

More Repositories

1

MirrorOS

MirrorOS is an interface for smart mirrors and transparent screens with a J.A.R.V.I.S. touch to it
JavaScript
105
star
2

FaceRecognitionAPI

A Django OpenCV wrapper that acts as a RESTful API for face recognition
Python
37
star
3

react-native-fullwidth-image

A responsive Image element that takes the full width of its parent element while maintaining aspect ratio
JavaScript
35
star
4

LeapMotionTouchScreen

Java applet that converts every surface to a touch-enabled surface using Leap Motion and 3-point calibration
Processing
31
star
5

CalcTutor

Intelligent Tutor System for Calculus classes (includes Javascript virtual math keyboard and random function/derivative/integral generator)
JavaScript
13
star
6

WemosD1MiniDisplayShield

A simple code for displaying characters on the Wemos D1 Mini Display Shield
C++
8
star
7

WemosD1MiniRC

A Wifi-Controlled DIY Robot made using the Wemos D1 Mini chip (ESP8266)
Arduino
5
star
8

AudioEditorProcessing

Simple sound manipulation software in Processing
Java
4
star
9

airtable

Airtable Timeline Block
JavaScript
3
star
10

SurfaceDialProcessing

A Proof Of Concept for a novel user interaction method that uses phones' accelerometer data
Processing
3
star
11

Y86Simulator

Simple Y86 Processor Simulator with custom low-level RTN definitions of instructions
Java
2
star
12

zura-soundboard

A React Native soundboard app with all the common things our friend Zura says
JavaScript
2
star
13

YikYakAnalysisProcessing

Visualization of Yaks from Lafayette College using Processing (Java) based on word frequency, word clouds and times users are active on Yik Yak
Java
2
star
14

TurboGrade

Grading software for Computer Science labs
C++
1
star
15

SliceLocator

A delicious React Native app that locates events with free food at Lafayette College
JavaScript
1
star
16

wisedecider

WiseDecider is a tool for decision making that makes use of decision tables
JavaScript
1
star
17

magic-remote

πŸŽ› A spatially-aware point-to-control universal remote prototype inspired by Sevenhugs
JavaScript
1
star
18

thirdeye

A blind person assistance device that uses a camera to describe the environment around the user
JavaScript
1
star
19

hadoop-pagerank

CS417 (Data Mining) Calculating PageRank and TopicRank in the Wikipedia Dataset
Java
1
star
20

metronome

Monitoring train car occupancy for the NYC subway
Python
1
star
21

react-native-rotating-view

A <View/> component that rotates every time the device changes orientation
JavaScript
1
star