An open API service indexing awesome lists of open source software.

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

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.