From a340c896eda12e9dc00f449ad9fe24398cc437f4 Mon Sep 17 00:00:00 2001 From: Bart De Lathouwer <4082369+lathoub@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:13:45 +0200 Subject: [PATCH] Update README.md --- previousSteps/step3/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/previousSteps/step3/README.md b/previousSteps/step3/README.md index 7597fd6..0174d5e 100644 --- a/previousSteps/step3/README.md +++ b/previousSteps/step3/README.md @@ -12,7 +12,7 @@ npm update ```javascript const express = require('express') const app = express() -const port = 80 +const port = 8080 app.get('/', function (req, res) { res.send('Hello World!') @@ -45,12 +45,12 @@ Example app listening at http://localhost:80 ## 2: Routes testen (HTTP commando GET) -In je browser: http://localhost +In je browser: http://localhost:8080 Op het scherm komt: >`Hello World!` -In je browser: http://localhost/about +In je browser: http://localhost:8080/about Op het scherm komt: > `about!` @@ -66,7 +66,7 @@ In Insomnia: Maak een nieuw Request en kies dan het POST commando, in het url va In het resultaten window komnt nu: > `Got a POST request` -Test ook `PUT` en `DELETE` voor `http://localhost/user` +Test ook `PUT` en `DELETE` voor `http://localhost:8080/user` Onze focus gaat vooral naar `GET` in de eerste 10 lessen