Last active
October 24, 2019 17:02
-
-
Save joshtrigger/cb61f4841f71672269635cc66a2b461a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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