Skip to content

Instantly share code, notes, and snippets.

@abidtkg
Created April 15, 2020 05:22
Show Gist options
  • Save abidtkg/167709ea0c6b098d39f87fd3c73a0a9b to your computer and use it in GitHub Desktop.
Save abidtkg/167709ea0c6b098d39f87fd3c73a0a9b to your computer and use it in GitHub Desktop.
Basic Structure Of Node Express
const express = require('express');
const app = express();
// BASIC ROUTING
app.get('/', (req, res) => {
res.status(200).json({message: "Hello From NodeJS Server});
});
// PORT TO LISTEN http://localhost:3000/
app.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment