Created
September 28, 2010 01:52
-
-
Save rixth/600264 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var meryl = require('./vendor/meryl'); | |
meryl.h('GET /hello/{a}/{b}/{c}', function () { | |
this.send(this.params.a + this.params.b + this.params.c); | |
}); | |
require('http').createServer(meryl.cgi()).listen(3000); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you Tom, fixed by [email protected]
Here is the bug fix http://github.com/coffeemate/meryl/commit/338533f2fbdc16f45607fc8af2ba42e90ab204f3