Nexanexa
Step 2

Your first project

nexa create generates the minimal structure: one page, one manifest, and nothing else — no package.json, no node_modules.

Create the project

nexa create my-site
cd my-site

This generates nexa.toml, nexa.config.ts and src/pages/index.tsx.

Build it

nexa build
# Compilado / -> dist/index.html (...)

nexa build compiles src/pages/**/*.tsx into dist/ — real HTML, ready to serve.

Check the result

cat dist/index.html
# <!doctype html>
# <html lang="es">
# ...

cat dist/index.html — it's real HTML, with no JavaScript framework in the way.