Skip to content

Instantly share code, notes, and snippets.

@leonaugusto16
Created November 22, 2019 20:43
Show Gist options
  • Save leonaugusto16/00abaa5b8f50c5b2f2947be78d1c8c87 to your computer and use it in GitHub Desktop.
Save leonaugusto16/00abaa5b8f50c5b2f2947be78d1c8c87 to your computer and use it in GitHub Desktop.
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