Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 616 Bytes

File metadata and controls

22 lines (14 loc) · 616 Bytes

Meryl

Meryl is minimalistic web framework for nodejs platform. It is really simple to use, fun to play and easy to modify.

// import meryl
var meryl = require('meryl');

// Now define a request handler tied to an url expression.
meryl.h('GET /', function () { this.send('<h3>Hello, World!</h3>'); });

// OK, here we go. Let's plug meryl into your http server instance.
require('http').createServer(meryl.cgi()).listen(3000);

Meryl has much more...

Please visit Meryl homepage for all related stuff.

http://coffeemate.github.com/meryl

For updates please follow: http://twitter.com/kadirpekel