A minimal Express app for a short full-stack exercise.
npm install
npm startThen open http://localhost:3000.
server.js— the web server. Your API work goes here.data/movies.json— the dataset (20 movies:id,title,year,genre,rating).public/index.html— the page served at/. Your frontend work goes here.
Prefer a different stack (Rails, Python, etc.)? That's fine — bring your own
minimal server, use data/movies.json as the dataset, and serve any HTML
page. The exercise is the same.
Requires Node 18+.