Created
November 26, 2018 12:11
-
-
Save ganeshkbhat/d90a002431c9054f726a4d28904aa42d to your computer and use it in GitHub Desktop.
Expressjs - Before after middleware implementation after sending response using send function
This file contains hidden or 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
const express = require('express'); | |
const app = express(); | |
const beforeMiddleware = function(req, res, next) { | |
console.log('Before middleware triggered'); | |
next(); | |
} | |
const responseHandler = function(req, res, next) { | |
console.log('Response Action implementation triggered with response instead of send'); | |
res.status(200).send({"response":"fine-as-normal"}); | |
next(); | |
} | |
const afterMiddleware = function(req, res, next) { | |
console.log('After middleware triggered'); | |
next(); /* Can be removed safely */ | |
} | |
app.get('/implement', beforeMiddleware, handler, afterMiddleware); | |
app.listen(9001, '127.0.0.1', function() { | |
console.log('Server started at port ' + 'localhost' + ':' + 9001); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment