Created
November 22, 2019 20:43
-
-
Save leonaugusto16/00abaa5b8f50c5b2f2947be78d1c8c87 to your computer and use it in GitHub Desktop.
Revisions
-
leonaugusto16 created this gist
Nov 22, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ 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