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
- Host: GitHub
- URL: https://github.com/mschn/angular-query-sample
- Owner: mschn
- License: mit
- Created: 2024-05-30T19:36:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-04T21:32:53.000Z (about 2 years ago)
- Last Synced: 2024-06-04T23:27:58.404Z (about 2 years ago)
- Language: TypeScript
- Size: 186 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```