0.0.3 • Published 11 years ago

express-method-override v0.0.3

Weekly downloads
242
License
-
Repository
github
Last release
11 years ago

Express Method Override

Override the method of a request based on a the X-HTTP-Method-Override header or custom query/post parameter.


Installation

npm install express-method-override

Usage:

// Be sure to place after the body parser if you want to accept the method 
// override using a post parameter
app.use(express.bodyParser());

// Accepts a single argument, the name of the method override parameter,
// defaults to "_method"
app.use(require('express-method-override')('method_override_param_name'));