Skip to content

Instantly share code, notes, and snippets.

@joshtrigger
Last active October 24, 2019 17:02
Show Gist options
  • Save joshtrigger/cb61f4841f71672269635cc66a2b461a to your computer and use it in GitHub Desktop.
Save joshtrigger/cb61f4841f71672269635cc66a2b461a to your computer and use it in GitHub Desktop.
// app.js
const express=require('express');
const bodyParser=require('body-parser');
const app=express();
app.use(bodyParser.urlencoded({
extended: false
}))
app.use(bodyParser.json())
module.exports=app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment