Skip to content
Platforms

Web projects

Static websites (HTML/CSS/JS) and React applications, with the live preview, what to put in the request and how to run or host the result.

Updated

On this page
  1. Static website (HTML/CSS/JS)
  2. React application
  3. What to put in the request
  4. Verification
  5. Hosting

Codexe generates two kinds of web projects.

#Static website (HTML/CSS/JS)

A complete site you can open in a browser or upload to any static host.

  • Live preview in the project page, with a button to open it in a new tab.
  • Some models write the whole site into a single index.html (styles and scripts inlined), so it fits in one reply. That's expected, and the site works the same.

#React application

A React project you run locally with Node.js.

  • No in-browser preview. Download the ZIP, run npm install and the start script from the README or package.json.

#What to put in the request

  • The purpose and audience ("landing page for a Minecraft server", "portfolio for a 3D artist").
  • Sections or pages and what each contains.
  • Style: colours, fonts, dark or light, references ("minimal, like a SaaS landing page").
  • Real content where you have it (names, prices, links). Otherwise the AI writes plausible placeholders you'll need to replace.
  • Behaviour: forms, menus, animations, and whether a form should actually send somewhere.

#Verification

Web projects aren't build-verified; Ready means the generation finished (see the project lifecycle). Check the preview (static sites) or run it locally (React).

#Hosting

The ZIP (Downloads) is a normal website or React project. Host it anywhere that serves static files (static sites) or can build a React app.

Web projects | Codexe Docs