Skip to content

Instantly share code, notes, and snippets.

@achukka
Created May 26, 2021 03:39
Show Gist options
  • Save achukka/14288c55dfc859190c1cee974526e367 to your computer and use it in GitHub Desktop.
Save achukka/14288c55dfc859190c1cee974526e367 to your computer and use it in GitHub Desktop.
A Basic Node Express
import express from "express";
const app = express();
const port = 3000;
app.get("/", (req, res) => {
res.send("You are listening from express server");
});
app.listen(port, (err) => {
if (err) {
return console.error(err);
}
return console.log(`server is listening on ${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment