Skip to content

Instantly share code, notes, and snippets.

@arielivandiaz
Created December 1, 2018 14:33
Show Gist options
  • Save arielivandiaz/0575262e4e7f88b3efd3f448459c293c to your computer and use it in GitHub Desktop.
Save arielivandiaz/0575262e4e7f88b3efd3f448459c293c to your computer and use it in GitHub Desktop.
Express NodeJS Simplest App Template
const express = require('express');
const app = express();
app.get('/', (request, respose) => {
respose.send('Hello World!');
});
app.listen(3000, () => {
console.log('\nExample app listening on http://localhost:3000/ !');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment