router.get('/', function (req, res) {
  performance.all(function (err, performances) {
    if (err) res.send('error finding performances: ' + err.message)
    else res.send(performances)
  })