{"id":22180066,"url":"https://github.com/orca-yun/orca-admin","last_synced_at":"2025-10-12T20:31:06.388Z","repository":{"id":252015821,"uuid":"839118392","full_name":"orca-yun/orca-admin","owner":"orca-yun","description":"💐 🐬 虎鲸云直播运营端, 私域直播, H5, Web, 运营, 录播","archived":false,"fork":false,"pushed_at":"2024-12-27T06:21:36.000Z","size":4049,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T07:22:39.911Z","etag":null,"topics":["dashbord","javascript","live","scss","vue","web"],"latest_commit_sha":null,"homepage":"https://admin.orcacl.com","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/orca-yun.png","metadata":{"files":{"readme":"README.DEV.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-07T02:25:32.000Z","updated_at":"2024-12-27T06:21:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"59246f5d-5364-4184-a56e-8a3e826caf61","html_url":"https://github.com/orca-yun/orca-admin","commit_stats":null,"previous_names":["orca-yun/orca-admin"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orca-yun%2Forca-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orca-yun%2Forca-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orca-yun%2Forca-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orca-yun%2Forca-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/orca-yun","download_url":"https://codeload.github.com/orca-yun/orca-admin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236272372,"owners_count":19122409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dashbord","javascript","live","scss","vue","web"],"created_at":"2024-12-02T09:16:46.882Z","updated_at":"2025-10-12T20:31:00.568Z","avatar_url":"https://github.com/orca-yun.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"### 项目功能 🔨\n\n- 使用 Vue3.3 + TypeScript 开发，单文件组件**＜script setup＞**\n- 采用 Vite4 作为项目开发、打包工具（配置 gzip/brotli 打包、tsx 语法、跨域代理…）\n- 使用 Pinia 替代 Vuex，轻量、简单、易用，集成 Pinia 持久化插件\n- 使用 TypeScript 对 Axios 整个二次封装（请求拦截、取消、常用请求封装…）\n- 基于 Element 表格页面全部为配置项 Columns\n- 支持 Element 组件大小切换、多主题布局、暗黑模式、i18n 国际化\n- 使用 VueRouter 配置动态路由权限拦截、路由懒加载，支持页面按钮权限控制\n- 使用 KeepAlive 对页面进行缓存，支持多级嵌套路由缓存\n- 常用自定义指令开发（权限、复制、水印、拖拽、节流、防抖、长按…）\n- 使用 Prettier 统一格式化代码，集成 ESLint、Stylelint 代码校验规范\n- 使用 husky、lint-staged、commitlint、czg、cz-git 规范提交信息\n\n### 安装使用步骤 📔\n\n- **Install：**\n\n```text\nnpm install\n```\n\n- **Run：**\n\n```text\nnpm dev\nnpm serve\n```\n\n- **Build：**\n\n```text\n# 开发环境\nnpm build:dev\n\n# 测试环境\nnpm build:test\n\n# 生产环境\nnpm build:pro\n```\n\n- **Lint：**\n\n```text\n# eslint 检测代码\nnpm lint:eslint\n\n# prettier 格式化代码\nnpm lint:prettier\n\n# stylelint 格式化样式\nnpm lint:stylelint\n```\n\n- **commit：**\n\n```text\n# 提交代码（提交前会自动执行 lint:lint-staged 命令）\nnpm commit\n```\n\n### 文件资源目录 📚\n\n```text\n├─ .husky                 # husky 配置文件\n├─ .vscode                # VSCode 推荐配置\n├─ build                  # Vite 配置项\n├─ public                 # 静态资源文件（该文件夹不会被打包）\n├─ src\n│  ├─ api                 # API 接口管理\n│  ├─ assets              # 静态资源文件\n│  ├─ components          # 全局组件\n│  ├─ config              # 全局配置项\n│  ├─ directives          # 全局指令文件\n│  ├─ enums               # 项目常用枚举\n│  ├─ hooks               # 常用 Hooks 封装\n│  ├─ languages           # 语言国际化 i18n\n│  ├─ layouts             # 框架布局模块\n│  ├─ routers             # 路由管理\n│  ├─ stores              # pinia store\n│  ├─ styles              # 全局样式文件\n│  ├─ typings             # 全局 ts 声明\n│  ├─ utils               # 常用工具库\n│  ├─ views               # 项目所有页面\n│  ├─ App.vue             # 项目主组件\n│  ├─ main.ts             # 项目入口文件\n│  └─ vite-env.d.ts       # 指定 ts 识别 vue\n├─ .editorconfig          # 统一不同编辑器的编码风格\n├─ .env                   # vite 常用配置\n├─ .env.development       # 开发环境配置\n├─ .env.production        # 生产环境配置\n├─ .env.test              # 测试环境配置\n├─ .eslintignore          # 忽略 Eslint 校验\n├─ .eslintrc.cjs          # Eslint 校验配置文件\n├─ .gitignore             # 忽略 git 提交\n├─ .prettierignore        # 忽略 Prettier 格式化\n├─ .prettierrc.cjs        # Prettier 格式化配置\n├─ .stylelintignore       # 忽略 stylelint 格式化\n├─ .stylelintrc.cjs       # stylelint 样式格式化配置\n├─ CHANGELOG.md           # 项目更新日志\n├─ commitlint.config.cjs  # git 提交规范配置\n├─ index.html             # 入口 html\n├─ LICENSE                # 开源协议文件\n├─ lint-staged.config.cjs # lint-staged 配置文件\n├─ package-lock.json      # 依赖包包版本锁\n├─ package.json           # 依赖包管理\n├─ postcss.config.cjs     # postcss 配置\n├─ README.md              # README 介绍\n├─ tsconfig.json          # typescript 全局配置\n└─ vite.config.ts         # vite 全局配置文件\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forca-yun%2Forca-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forca-yun%2Forca-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forca-yun%2Forca-admin/lists"}