Skip to content

Instantly share code, notes, and snippets.

@jdx
Created October 14, 2015 19:29
Show Gist options
  • Save jdx/8a99e8542b86bbac8025 to your computer and use it in GitHub Desktop.
Save jdx/8a99e8542b86bbac8025 to your computer and use it in GitHub Desktop.
Express.js example
'use strict';
let express = require('express');
let app = express();
app.get('/statuscheck', function (req, res) {
res.json({status: 'success'});
});
app.listen(process.env.PORT || 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment