README Generator — illustrative example INPUT Write a minimal README. Fictional project: Tiny Notes. Requires Node 24 and npm, has package-lock.json, scripts dev and test, no environment variables needed for local use. RESULT # Tiny Notes A small notes application. ## Requirements Node 24 and npm. ## Local setup Install locked dependencies with `npm ci`. Start development with `npm run dev`, then open the URL printed by the development server. ## Tests Run `npm test`. ## Configuration No environment variables are required for local use. These instructions reflect the supplied project facts; no repository execution is claimed. REVIEW A README should make setup reproducible from verified requirements. Distinguish instructions that were checked from proposed commands or unavailable configuration. This is a teaching example, not a live execution record.