I'm new to Node/Express.. I see GET params can be captured like so:
app.get('/log/:name', api.logfunc);
POST like so:
app.post('/log', ... (form variables available in req.body.)
I'm aware of app.all, but is there a single way I can get all the variables for GET and POST when using app.all? (I'm too used to $_REQUEST in php!:)
thx,