Skip to content

Instantly share code, notes, and snippets.

@ofanidariyan
Created August 20, 2017 20:17
Show Gist options
  • Save ofanidariyan/50fc3528d8f5bf3d267f9faacb5dfa92 to your computer and use it in GitHub Desktop.
Save ofanidariyan/50fc3528d8f5bf3d267f9faacb5dfa92 to your computer and use it in GitHub Desktop.
'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