Skip to content

Instantly share code, notes, and snippets.

@writingdeveloper
Created November 28, 2017 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save writingdeveloper/f182e5d9f5850392989d047e597debc2 to your computer and use it in GitHub Desktop.
Save writingdeveloper/f182e5d9f5850392989d047e597debc2 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.send('Hello Main Page');
});
app.get('/login', function(req, res) {
res.send('Login Please');
});
app.listen(3000, function() {
console.log('Connected 3000 Port');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment