TychicusThomas / ubiquitous-umbrella-first

https://ubiquitous-umbrella-first.onrender.com/
https://github.com/TychicusThomas/ubiquitous-umbrella-first
GNU General Public License v3.0
0 stars 0 forks source link

step 5 #5

Open TychicusThomas opened 2 months ago

TychicusThomas commented 2 months ago

in our terminal,

if im in windows, kill powershell, open github

https://gitforwindows.org/

TychicusThomas commented 2 months ago

cd ubiquitous-umbrella-first/

TychicusThomas commented 2 months ago

$code .

toggle over new instances of VS code

Screenshot 2024-08-22 132534

'node -v' if not, go download it... https://nodejs.org/en

const express = require('express') const app = express()

app.get('/', function (req, res) { res.send('Hello World') })

app.listen(3000)