A very simple REST framework implementation based on pure string matching and events.
constCeler=require('celer')constceler=newCeler()constPORT=8888celer.get('/hi',function(req,res){res.send('Hello World')})celer.post('/hi',function(req,res){res.send('Hello World')})celer.listen(PORT,function(){console.log("Server listening on: http://localhost:%s",PORT)})MIT