@luwol3 In Magic Mirror läuft bereits ein Express-Server, und Sie können Ihre eigenen Pfade hinzufügen … siehe das MMM-ImageslideShow-Modul node_helper

`` `
extraRoutes: function () {
var self = this;

this.expressApp.get (“/ MMM-ImagesPhotos / photos”, Funktion (req, res) {
self.getPhotosImages (req, res);
});

this.expressApp.use (“/ MMM-ImagesPhotos / photo”, express.static (self.path_images));
},
`` `