Skip to content

Instantly share code, notes, and snippets.

@kevinchisholm
Last active January 18, 2018 12:00
Show Gist options
  • Save kevinchisholm/d0d674fea15532bb119285c63cfea76b to your computer and use it in GitHub Desktop.
Save kevinchisholm/d0d674fea15532bb119285c63cfea76b to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Your AWS EC2 Node.js Web Server is Working!')
})
app.listen(3000, () => console.log('AWS EC2 Node.js Server Running on Port 3000'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment