Skip to content

Instantly share code, notes, and snippets.

@csorlandi
Created June 12, 2018 18:47
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 csorlandi/942ed21d424289584553e9fb5936ede5 to your computer and use it in GitHub Desktop.
Save csorlandi/942ed21d424289584553e9fb5936ede5 to your computer and use it in GitHub Desktop.
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.urlencoded({ extended: false }));
app.get('/', (req, res) => {
res.send('Hello World!');
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment