Skip to content

Instantly share code, notes, and snippets.

@tedsuo
Created November 11, 2020 21:48
Show Gist options
  • Select an option

  • Save tedsuo/daf4be5065470c510615bdd8bfd8dd40 to your computer and use it in GitHub Desktop.

Select an option

Save tedsuo/daf4be5065470c510615bdd8bfd8dd40 to your computer and use it in GitHub Desktop.
node_basic_server.js
const express = require('express');
const app = express();
app.get('/hello', (req, res) => {
res.status(200).send('Hello World');
});
app.listen(9000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment