Advertisement
OmgImAlexis

Untitled

Aug 29th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. 'use strict';
  2.  
  3. const express = require('express');
  4.  
  5. // Constants
  6. const PORT = 3000;
  7.  
  8. // App
  9. const app = express();
  10. app.get('/', function (req, res) {
  11. res.send({
  12. hostname: process.env['HOSTNAME']
  13. });
  14. });
  15.  
  16. app.listen(PORT);
  17. console.log('Running on http://localhost:' + PORT);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement