Angular-Ngrx-Nx 真实世界示例应用教程

Angular-Ngrx-Nx 真实世界示例应用教程

angular-ngrx-nx-realworld-example-appReal world application built with Angular 17, NgRx 17, nrwl/nx 17项目地址:https://gitcode.com/gh_mirrors/an/angular-ngrx-nx-realworld-example-app

1. 项目的目录结构及介绍

angular-ngrx-nx-realworld-example-app/
├── apps/
│   └── conduit/
│       ├── src/
│       │   ├── app/
│       │   │   ├── app.component.ts
│       │   │   ├── app.component.html
│       │   │   ├── app.component.css
│       │   │   └── ...
│       │   └── ...
│       └── ...
├── libs/
│   ├── auth/
│   │   ├── data-access/
│   │   │   ├── auth.store.ts
│   │   │   ├── local-storage-jwt.service.ts
│   │   │   └── ...
│   │   └── ...
│   └── ...
├── tools/
│   └── ...
├── editorconfig
├── env
├── eslintignore
├── eslintrc.json
├── gitignore
├── prettierignore
├── prettierrc
├── LICENSE.txt
├── README.md
├── jest.config.ts
├── jest-preset.js
├── logo.png
├── migrations.json
├── nx.json
├── package-lock.json
├── package.json
├── renovate.json
└── tsconfig.base.json

目录结构介绍

  • apps/: 包含主要的应用程序,例如 conduit
  • libs/: 包含共享的库,例如 auth 库。
  • tools/: 包含项目使用的工具和脚本。
  • editorconfig, env, eslintignore, eslintrc.json, gitignore, prettierignore, prettierrc: 配置文件。
  • LICENSE.txt, README.md: 许可证和项目说明文档。
  • jest.config.ts, jest-preset.js: Jest 测试配置。
  • logo.png: 项目图标。
  • migrations.json: 迁移配置。
  • nx.json: Nx 配置文件。
  • package-lock.json, package.json: npm 包管理文件。
  • renovate.json: Renovate 配置文件。
  • tsconfig.base.json: TypeScript 配置文件。

2. 项目的启动文件介绍

启动文件

  • apps/conduit/src/app/app.component.ts: 应用程序的根组件。
import { AsyncPipe } from '@angular/common';
import { ChangeDetectionStrategy, Component, OnInit, inject } from '@angular/core';
import { RouterModule } from '@angular/router';
import { AuthStore, LocalStorageJwtService } from '@realworld/auth/data-access';
import { filter, take } from 'rxjs/operators';
import { FooterComponent } from ' /layout/footer/footer.component';
import { NavbarComponent } from ' /layout/navbar/navbar.component';

@Component({
  selector: 'cdt-root',
  standalone: true,
  templateUrl: ' /app.component.html',
  styleUrls: [' /app.component.css'],
  imports: [FooterComponent, NavbarComponent, RouterModule, AsyncPipe],
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AppComponent implements OnInit {
  private authStore = inject(AuthStore);
  private localStorageJwtService = inject(LocalStorageJwtService);

  ngOnInit() {
    this.localStorageJwtService.getItem().pipe(
      filter(token => !!token),
      take(1)
    ).subscribe(token => this.authStore.login(token));
  }
}

启动文件介绍

  • app.component.ts: 定义了应用程序的根组件,包含路由、认证状态管理和布局组件。

3. 项目的配置文件介绍

配置文件

  • nx.json: Nx 工作区配置文件。
  • tsconfig.base.json: TypeScript 基础配置文件。
  • package.json: npm 包管理文件。
  • jest.config.ts: Jest 测试配置文件。
  • eslintrc.json: ESLint 配置文件。
  • prettierrc: Prettier 代码格式化配置文件。

配置文件介绍

angular-ngrx-nx-realworld-example-appReal world application built with Angular 17, NgRx 17, nrwl/nx 17项目地址:https://gitcode.com/gh_mirrors/an/angular-ngrx-nx-realworld-example-app

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

郜垒富Maddox

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值