Goal Implement a minimal HTTP static file server (src/server.js) that serves the public/ directory, reachable via a new npm run serve npm script. The existing npm start CLI entry point must remain ...
[ ] pm run serve script added to package.json — starts the server serving public/ on port 8080 by default The PORT environment variable overrides the default port (e.g. PORT=3000 npm run serve) [ ] pm ...