Created
August 20, 2017 20:17
-
-
Save ofanidariyan/50fc3528d8f5bf3d267f9faacb5dfa92 to your computer and use it in GitHub Desktop.
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
'use strict'; | |
//Define all dependencies needed | |
const express = require('express'); | |
const responseTime = require('response-time') | |
const axios = require('axios'); | |
//Load Express Framework | |
var app = express(); | |
app.get('/cluster', (req, res) => { | |
res.send('Hello Word'); | |
}); | |
app.listen(3000, function() { | |
console.log('Your node is running on port 3000 !!!') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment