Skip to content

Instantly share code, notes, and snippets.

@angellandros
Created October 18, 2019 21:01
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 angellandros/26c8f79de0716bf5824f87da3269c2e4 to your computer and use it in GitHub Desktop.
Save angellandros/26c8f79de0716bf5824f87da3269c2e4 to your computer and use it in GitHub Desktop.
Expree.js Hello World
import * as express from 'express';
const app = express();
const port = 3000;
app.get('/', (req, res) => res.send('Hello World!'));
app.listen(port, () => console.log(`Server started listening to port ${port}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment