reading-notes

Read: 06 - Node, Express, and APIs Summary:

What Is Node and When Should I Use It?

http.createServer((request, response) => { response.writeHead(200); response.end(‘Hello, World!’); }).listen(3000);

console.log(‘Server running on http://localhost:3000’); ```