Sarath Sasikumar
Sarath Sasikumar
``` var express = require('express') var app = express() app.head('/test', function (req, res,next) { console.log("Head"); res.end(); }) app.get('/test', function (req, res,next) { console.log("Get"); res.end(); }) app.listen(3000, function () { console.log('Example...
@NoNameProvided It wasn't a CORS request @pleerock why is it necessary to call the `next()`. I understand that there can be a middleware that might be required to be called...
So is it not possible to replicate this behavior of express ``` var express = require('express') var app = express() app.head('/test', function (req, res,next) { console.log("Head"); res.end(); }) app.get('/test', function...