Node.js - HTTP Module
Why does this Express app fail to serve static files?
Accessing
const express = require('express');
const app = express();
app.use('/static', express.static('public'));
app.listen(3000);Accessing
http://localhost:3000/image.png returns 404. What is the fix?