Démarrage
Prérequis
Installation de Bun v1.1.21
Pour MacOs/Linux
curl -fsSL https://bun.sh/install | bashPour windows
powershell -c "irm bun.sh/install.ps1 | iex"Création d'un projet
Via CLI
bunx @dnax/cli@latest create serverDémarrage
bun run dev ou directement dans votre script
//package.json
{
scripts:{
"dev":"dnaxi --dev",
"start":"dnaxi --start"
}
}⚙️ Configuration
Last updated