classdojo / kubrik.js

flexible front-end http router
0 stars 0 forks source link

CRUD plugin #2

Open crcn opened 10 years ago

crcn commented 10 years ago
router.add({
  "/classes/:classroom": {
    "GET": function (request, next) {
      next(null, content);
    },
    "POST": function (request, next) {
      next(null, stream);
    },
    "PUT": function (request, next) {
      next(null, content);
    },
    "DELETE": function (request, next) {
      next(null, stream);
    }
  }
});