Skip to content

Instantly share code, notes, and snippets.

@msfidelis
Created July 3, 2018 23:04
Show Gist options
  • Save msfidelis/bd4fc318346bd1934897280c00db4638 to your computer and use it in GitHub Desktop.
Save msfidelis/bd4fc318346bd1934897280c00db4638 to your computer and use it in GitHub Desktop.
'use strict';
const config = require('config');
module.exports = app => {
app.get('/version', (req, res) => {
const infos = {
version: config.get('VERSION'),
env: config.get('ENV')
}
res.status(200).send(infos);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment