Skip to content

Instantly share code, notes, and snippets.

@lowellbander
Last active December 7, 2021 01:26
Show Gist options
  • Save lowellbander/549ea38998826b151613e3fb1edbdf8b to your computer and use it in GitHub Desktop.
Save lowellbander/549ea38998826b151613e3fb1edbdf8b to your computer and use it in GitHub Desktop.
let express = require('express');
var app = express();
app.get('/', (req, res) => {
res.send('Here it is, the aid app!');
});
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Ready: http://localhost:${PORT}/`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment