# ng_admin_unions **Repository Path**: null_435_3174/ng_admin_unions ## Basic Information - **Project Name**: ng_admin_unions - **Description**: ng后台管理系统集合 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-19 - **Last Updated**: 2024-08-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ng_admin_unions ## 介绍 ng后台管理系统集合 ## 常用资源 - [angular-cli](https://github.com/angular/angular-cli) - [angular官方文档](https://angular.cn/overview) - [angular-ant UI框架](https://ng.ant.design/docs/introduce/zh) - [ts文档](https://www.typescriptlang.org/) ## 安装ng-cli ```shell # 安装全局命令行工具 npm install -g @angular/cli # 在 Windows 客户端计算机上,默认禁用 PowerShell 脚本的执行。要允许执行 npm 全局二进制文件所需的 PowerShell 脚本,你必须设置以下内容执行策略 Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned # 创建项目 ng new [project-name] cd [project-name] # 安装ng-antd UI框架 ng add ng-zorro-antd # 解决找不到npm包问题,找到tsconfig.json文件,修改为"moduleResolution": "Node" # 运行项目 ng start # 打包项目 ng build ```