DEV Community

Discussion on: Why the JS ecosystem is awesome !

 
gmartigny profile image
Guillaume Martigny
const http = require("http");
http.createServer((request, response) => {
    response.end("<img src='myimage.jpg'/>")
}).listen(80);