#Frontend development
2 messages Β· Page 1 of 1 (latest)
Usually like this:
- write the UI code
- run a local dev server, like
pnpm dev/npm run dev - open
localhost:3000or similar in a browser - keep coding while the page auto-refreshes (hot reload)
Common setup:
- React/Vue/Svelte/Next/Vite app
- browser for live preview
- DevTools to inspect layout, CSS, network, console
- Storybook for isolated component work
- Playwright/Cypress for UI tests
- sometimes mobile emulator/device if itβs responsive or app-like
So the short answer is: people usually just run the app locally and view it in the browser while editing.