#Frontend development

2 messages Β· Page 1 of 1 (latest)

sleek spruce
#

how does people do fe development, how they see the ui they made?

left kettleBOT
#

Usually like this:

  1. write the UI code
  2. run a local dev server, like pnpm dev / npm run dev
  3. open localhost:3000 or similar in a browser
  4. 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.