Skip to content

Instantly share code, notes, and snippets.

@igorcardozo
Created November 16, 2020 01:17
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 igorcardozo/d89db6dc69a6ca756a1881610894b6ba to your computer and use it in GitHub Desktop.
Save igorcardozo/d89db6dc69a6ca756a1881610894b6ba to your computer and use it in GitHub Desktop.
import express, { Request, Response } from "express";
const app = express();
app.get("/", function (req: Request, res: Response) {
res.send("Hello World");
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment