Summer Semester 2020
Instructor: Taimur Khan
Source: https://www.cloudflare.com/learning/serverless/glossary/client-side-vs-server-side/
Source: https://www.cloudflare.com/learning/serverless/glossary/client-side-vs-server-side/
Source: geeksforgeeks.org
Source: Taimur Khan.
Source: lynda.com
Source: Taimur Khan.
//in terminal
express
//in terminal
npm install
//add port as a constant -->
const port = 3000;
// add this to recieve requests and send responses on the path ´/´
app.get('/', (req, res) => res.send('Hello World!'));
//add this to make the server listen on out port
app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`));
Source: Taimur Khan's Coggle -- video links from www.codecademy.com.
Final project result
Welcome to web programming!