Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created October 10, 2017 14:26
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 matthieu-D/b31d82b39f018eb4abd926b78caddc82 to your computer and use it in GitHub Desktop.
Save matthieu-D/b31d82b39f018eb4abd926b78caddc82 to your computer and use it in GitHub Desktop.
var express = require('express');
var bodyParser = require('body-parser')
var app = express();
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json())
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment