1.1 KiB
1.1 KiB
NgRx Playground
An Angular application for exploring and learning NgRx state management patterns.
Built with Angular CLI v21.2.1 · Tested with Vitest
Getting Started
Prerequisites
- Node.js (LTS recommended)
- Angular CLI:
npm install -g @angular/cli
Installation
npm install
Development Server
ng serve
Open http://localhost:4200 in your browser. The app reloads automatically on file changes.
Scripts
| Command | Description |
|---|---|
ng serve |
Start development server |
ng build |
Build for production |
ng test |
Run unit tests with Vitest |
ng e2e |
Run end-to-end tests |
ng generate component <name> |
Scaffold a new component |
Project Structure
src/
├── app/
│ ├── store/ # NgRx state, actions, reducers, effects, selectors
│ └── ...
├── assets/
└── environments/