https://github.com/gerasaka/angular-demo
Simple project to demonstrate angular basic features
https://github.com/gerasaka/angular-demo
angular rxjs tailwindcss testing
Last synced: about 2 months ago
JSON representation
Simple project to demonstrate angular basic features
- Host: GitHub
- URL: https://github.com/gerasaka/angular-demo
- Owner: gerasaka
- Created: 2024-11-11T01:10:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-11T01:12:01.000Z (over 1 year ago)
- Last Synced: 2025-01-24T07:45:00.408Z (over 1 year ago)
- Topics: angular, rxjs, tailwindcss, testing
- Language: TypeScript
- Homepage:
- Size: 656 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AngularDemo
This project is created to demonstrate angular basic features (Routing, Fetching API, Observables (rxjs), Control flow, Testing)
## Preview
## Setup project on local machine
This project is created with Angular v18 and `pnpm`, but if you're not using `pnpm`, `npm` should be sufficient.
### Run development server
```bash
pnpm start
or
ng serve
```
Then, open http://localhost:4200/ in your browser. The application will automatically reload if you change any of the source files.
### Run unit tests
```bash
pnpm test
or
ng test
```
### Build
```bash
pnpm build
or
ng build
```
The build artifacts will be stored in the `dist/` directory.