Create Dalila apps with one command
npm install create-dalilaScaffold a new Dalila project with one command.
``bash`
npm create dalila my-app
cd my-app
npm install
npm run dev
Open http://localhost:4242 to see your app.
- Counter example with signals and computed values
- Hot reload development server + route generation watcher
- TypeScript support out of the box
- Minimal CSS styling
``
my-app/
├── index.html # Main HTML file
├── src/
│ ├── main.ts # Application entry point
│ └── style.css # Styles
├── package.json
└── tsconfig.json
- npm run dev - Start dev server and route watchernpm run build` - Compile TypeScript
-