A minimal Angular template for Dyad.sh - a clean starting point for building Angular applications.
This template provides a minimal, unopinionated Angular application setup that's fully compatible with Dyad.sh's JavaScript-based environment. It includes:
- Latest stable Angular (v17)
- TypeScript support
- CSS styling
- Development server with hot reload
- Production build configuration
To start the development server:
npm run dev
# or
npm startThe application will be available at http://localhost:4200/ and will automatically reload when you make changes.
To create a production build:
npm run buildThe build artifacts will be stored in the dist/ directory, ready for deployment.
src/
├── app/
│ ├── app.component.ts # Main component logic
│ ├── app.component.html # Main component template
│ └── app.component.css # Main component styles
├── index.html # Application entry point
├── main.ts # Application bootstrap
└── styles.css # Global styles
- Edit
src/app/app.component.tsto add your component logic - Modify
src/app/app.component.htmlfor your template - Update
src/app/app.component.cssfor component-specific styles - Add global styles in
src/styles.css
- Angular 17
- TypeScript
- CSS
This template is open source and available for use in your Dyad.sh projects.