Skip to content

Instantly share code, notes, and snippets.

@mikolajprzybysz
Created January 28, 2019 22:55
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 mikolajprzybysz/3f6631d7613c2cc6f8c720cb8bf06cd5 to your computer and use it in GitHub Desktop.
Save mikolajprzybysz/3f6631d7613c2cc6f8c720cb8bf06cd5 to your computer and use it in GitHub Desktop.
JavaScript Node Express Rest Api Hello World example
const app = require('express')();
app.get('/', (req, res) => {
res.send('Hello world!');
});
app.listen(80, () => {
console.log('App listening on port 80!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment