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

https://github.com/mschn/angular-query-sample

Sample Angular app with Tanstack Query
https://github.com/mschn/angular-query-sample

Last synced: over 1 year ago
JSON representation

Sample Angular app with Tanstack Query

Awesome Lists containing this project

README

          

# Angular Query Sample

This project is a sample application that uses

- [Angular](https://angular.dev/)
- [Tanstack Query](https://tanstack.com/query/latest/docs/framework/angular/overview)
- [Tailwind CSS](https://tailwindcss.com/)

It shows how you can build a modern Angular app with Tanstack Query.

This app contains an Angular client and a Node.js server that runs with [Fastify](https://fastify.dev/)

## Quick start

You can start the UI and the server simultaneously using `docker`:

```bash
docker compose up -d
```

## Dev mode

For development you can run both UI and server in separate processes manually:

```bash
# start the UI
cd ui
npm i
npm run start
```

```bash
# start the server
cd server
npm i
npm run start
```