Skip to content

Instantly share code, notes, and snippets.

View dylanbathurst's full-sized avatar

Dylan Bathurst dylanbathurst

View GitHub Profile
// Photos
app.get('/photos', function (req, res, next) {
var view = {};
fs.readdir('./public/img/slideshow', function(err, files) {
var re = /\.(gif|jpg|jpeg|tiff|png)$/i;
var list = files.filter(function (file) {
return re.test(file);