Created
November 22, 2019 20:43
-
-
Save leonaugusto16/00abaa5b8f50c5b2f2947be78d1c8c87 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
const Express = require("express"); | |
const BodyParser = require("body-parser"); | |
var app = Express(); | |
app.use(BodyParser.json()); | |
app.use(BodyParser.urlencoded({ extended: true })); | |
app.listen(3000, () => {}); | |
OR | |
https://gist.github.com/willurd/5720255 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment