app.put('/:id', jsonParser, function(req, res) {
    theData[req.params.id] = req.body;
    res.send();
  });