Skip to content

Instantly share code, notes, and snippets.

@dimitardanailov
Last active September 8, 2018 13:51
Show Gist options
  • Save dimitardanailov/78dc3d7d58be0b5f2318d2d48ebf2ec2 to your computer and use it in GitHub Desktop.
Save dimitardanailov/78dc3d7d58be0b5f2318d2d48ebf2ec2 to your computer and use it in GitHub Desktop.
IBM NodeServer Generator health route
module.exports = (app) => {
const router = require('express').Router();
router.get('/', (req, res, next) => {
res.json({ status: 'UP' });
});
app.use('/health', router);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment