Skip to content

Instantly share code, notes, and snippets.

@staskolukasz
Created February 21, 2019 08:33
Show Gist options
  • Save staskolukasz/5ffb1cf0618350e4557c1b8d943459b4 to your computer and use it in GitHub Desktop.
Save staskolukasz/5ffb1cf0618350e4557c1b8d943459b4 to your computer and use it in GitHub Desktop.
Sample Node.js application
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (_, res) => {
res.send('Hello world!');
});
app.listen(port, () => {
console.log(`Listening on port ${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment