Skip to content

Instantly share code, notes, and snippets.

@yostane
Created February 15, 2021 11:38
Show Gist options
  • Select an option

  • Save yostane/4de9e9591e62576b1c6b43a02cd84b28 to your computer and use it in GitHub Desktop.

Select an option

Save yostane/4de9e9591e62576b1c6b43a02cd84b28 to your computer and use it in GitHub Desktop.
express hello world
const express = require("express");
const app = express();
const port = 3000;
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment