Networking Create a node server import http from 'http'const server = http.createServer((req, res) => { // handle request})server.listen(3000)