Skip to content

Instantly share code, notes, and snippets.

@leonaugusto16
Created November 22, 2019 20:43
Show Gist options
  • Select an option

  • Save leonaugusto16/00abaa5b8f50c5b2f2947be78d1c8c87 to your computer and use it in GitHub Desktop.

Select an option

Save leonaugusto16/00abaa5b8f50c5b2f2947be78d1c8c87 to your computer and use it in GitHub Desktop.

Revisions

  1. leonaugusto16 created this gist Nov 22, 2019.
    13 changes: 13 additions & 0 deletions [JS] Express simple to test rapidão
    Original 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