Nexanexa
Paso 2

Tu primer proyecto

nexa create genera la estructura mínima: una página, un manifiesto, y nada más — sin package.json, sin node_modules.

Creá el proyecto

nexa create mi-sitio
cd mi-sitio

Esto genera nexa.toml, nexa.config.ts y src/pages/index.tsx.

Compilalo

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

nexa build compila src/pages/**/*.tsx a dist/ — HTML real, listo para servir.

Mirá el resultado

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

cat dist/index.html — es HTML real, sin ningún framework de JavaScript de por medio.