From 804ff005470f916fa0a775daf650508fc003a003 Mon Sep 17 00:00:00 2001 From: Yutsuo Date: Mon, 7 Jan 2019 21:11:54 -0200 Subject: [PATCH] Phase III Task 4 --- .vscode/launch.json | 14 ++++++++++++++ node/app.js | 1 - 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..72245ff --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "program": "${workspaceFolder}/node\\app.js" + } + ] +} \ No newline at end of file diff --git a/node/app.js b/node/app.js index 0df77ec..7896188 100755 --- a/node/app.js +++ b/node/app.js @@ -18,7 +18,6 @@ const successUrl = 'http://localhost:3002/yay.html'; const failureUrl = 'http://localhost:3002/nay.html'; app.use(cookieParser()); -app.use(cookie()); // const morgan = require('morgan'); // // use morgan to log requests to the console