codecombat/server/sprites.coffee

15 lines
395 B
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
# for sprite page, which uses the age of the files to
# order the sprites and make the more recent ones
# show up at the top
module.exports.setupRoutes = (app) ->
app.get('/server/sprite-info', (req, res) ->
exec = require('child_process').exec
child = exec('ls -c1t app/assets/images/sprites/',
(error, stdout, stderr) ->
res.write(stdout)
res.end()
)
)