node-php icon indicating copy to clipboard operation
node-php copied to clipboard

Deprecated express method

Open hobbe opened this issue 7 years ago • 1 comments

node-php is using a deprecated express method.

express deprecated res.send(body, status): Use res.status(status).send(body) instead node_modules\node-php\main.js:115:13                       
express deprecated res.sendfile: Use res.sendFile instead node_modules\node-php\main.js:120:12                                                  

hobbe avatar Feb 03 '17 10:02 hobbe

relace response.send(html, response.statusCode); to response.status(response.statusCode).send(html)

zoranmil avatar Oct 29 '17 09:10 zoranmil