mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-04-26 19:50:39 +08:00
236 lines
6.9 KiB
Markdown
236 lines
6.9 KiB
Markdown
---
|
||
home: true
|
||
heroImage: https://static01.imgkr.com/temp/f0108d7c178b4ce196e43ebec14fbf23.png
|
||
heroText: 计算机应试全家桶
|
||
externalLinkIcon: false
|
||
tagline: 磨刀不误砍柴工、读完硕士再打工,笔记内容持续更新...
|
||
actions:
|
||
- text: 快速开始→
|
||
link: /guide/
|
||
type: primary
|
||
- text: 工作机会
|
||
link: /gangg
|
||
type: secondary
|
||
features:
|
||
- title: 基础概览
|
||
details: 与官网同步的Egg.js框架基础知识整理,有效地降低日常开发和复习巩固的查询、学习时间。
|
||
- title: 整理强化
|
||
details: 官方插件的基础上,抽象、封装出适合自己功能的plus插件,能够快速集成、使用在新的项目中。
|
||
- title: 反复反复
|
||
details: 通过以项目Demo示例的方式,对框架常用的功能进行Code编写和整理,提供有效且易用的代码封装。
|
||
|
||
footerColumn: 3
|
||
footerWrap:
|
||
- headline: 相关资料
|
||
items:
|
||
- title: 王道论坛
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: 全平台都可以关注
|
||
- title: 研招网
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: 考研最新消息
|
||
- headline: 开源共享
|
||
items:
|
||
- title: 408Family
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: egg-axios-plus
|
||
- title: 408CSFamily
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: egg-grpc-plus
|
||
- title: mysql
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: egg-mysql-plus
|
||
- title: sequelize
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: egg-sequleize-plus
|
||
- title: MQ
|
||
link: https://github.com/zpfz/vuepress-theme-antdocs
|
||
details: egg-rabbit-plus
|
||
- headline: 线上平台
|
||
items:
|
||
- title: Oauth2
|
||
link: http://oauth2.142vip.cn
|
||
details: 授权管理
|
||
- title: Yapi
|
||
link: https://yapi.142vip.cn
|
||
details: 高效、易用的api平台
|
||
- headline: 联系方式
|
||
items:
|
||
- title: 掘金
|
||
link: https://juejin.cn/user/448256476724807
|
||
details: 不定期更新
|
||
- title: CSDN
|
||
link: https://blog.csdn.net/Mmdapls
|
||
details: 不定期更新
|
||
- title: Github
|
||
link: https://github.com/mmdapl
|
||
details: 日常更新
|
||
- title: 哔哩哔哩
|
||
link: https://space.bilibili.com/350937042
|
||
details: 不定期更新
|
||
# <a href="https://tongji.baidu.com/web/welcome/login" target="_blank">百度统计</a>
|
||
footer: Copyrights © 2019-2022 妍荣姑娘网络工作室 | <a href="https://github.com/mmdapl" target="_blank">Rong姐姐好可爱</a>
|
||
# footer: Copyrights © 2019-2022 妍荣姑娘网络工作室 Rong姐姐好可爱
|
||
footerHtml: true
|
||
---
|
||
|
||
|
||
---
|
||
|
||
### 本地浏览【推荐】
|
||
|
||
由于平台、网络等原因,在线浏览容易出现加载面、加载不出来等常见问题,因此非常建议在本地进行浏览、学习;**下面指令默认你已经安装[Git](https://git-scm.com/download)、[NPM](https://www.npmjs.com/)、[PNPM](https://www.pnpm.cn/)、[Yarn](https://yarn.bootcss.com/)、[Node](http://nodejs.cn)等环境,并对此有一定了解!**
|
||
|
||
<CodeGroup>
|
||
|
||
<CodeGroupItem title="PNPM(推荐)" >
|
||
|
||
```bash:no-line-numbers
|
||
## 进入cmd命令行,直接克隆仓库
|
||
git clone https://github.com/mmdapl/408CSFamily.git
|
||
|
||
## 进入408CSFamily文件夹中
|
||
cd 408CSFamily/
|
||
|
||
## tips: 如果本地已经clone过仓库,建议执行pull指令,获取最新
|
||
git pull
|
||
|
||
## 下载依赖包
|
||
pnpm install
|
||
|
||
## 执行dev指令,本地启动项目,打开http://localhost:4200即可访问文档
|
||
pnpm dev
|
||
|
||
```
|
||
</CodeGroupItem>
|
||
|
||
<CodeGroupItem title=" NPM ">
|
||
|
||
```bash:no-line-numbers
|
||
## 进入cmd命令行,直接克隆仓库
|
||
git clone https://github.com/mmdapl/408CSFamily.git
|
||
|
||
## 进入408CSFamily文件夹中
|
||
cd 408CSFamily/
|
||
|
||
## tips: 如果本地已经clone过仓库,建议执行pull指令,获取最新
|
||
git pull
|
||
|
||
## 下载依赖包
|
||
npm install
|
||
|
||
## 执行dev指令,本地启动项目,打开http://localhost:4200即可访问文档
|
||
npm run dev
|
||
|
||
```
|
||
|
||
|
||
|
||
</CodeGroupItem>
|
||
|
||
|
||
<CodeGroupItem title=" YARN ">
|
||
|
||
```bash:no-line-numbers
|
||
## 进入cmd命令行,直接克隆仓库
|
||
git clone https://github.com/mmdapl/408CSFamily.git
|
||
|
||
## 进入408CSFamily文件夹中
|
||
cd 408CSFamily/
|
||
|
||
## tips: 如果本地已经clone过仓库,建议执行pull指令,获取最新
|
||
git pull
|
||
|
||
## 下载依赖包
|
||
yarn install
|
||
|
||
## 执行dev指令,本地启动项目,打开http://localhost:4200即可访问文档
|
||
yarn run dev
|
||
|
||
```
|
||
</CodeGroupItem>
|
||
|
||
|
||
</CodeGroup>
|
||
|
||
查看项目启动日志并访问:[http://127.0.0.1:4200](http://localhost:4200),开启学习之旅吧~
|
||
|
||
|
||
### 在线浏览
|
||
|
||
- 个人网站
|
||
- 静态托管
|
||
|
||
|
||
### 提交记录
|
||
|
||
|
||
|
||
|
||
---
|
||
|
||
|
||
### 赞赏列表
|
||
|
||
|
||
以下排名不分先后! [详细统计]()
|
||
|
||
|
||
<div>
|
||
<a href="https://github.com/ChiefPing" target="_blank">
|
||
<img src="https://avatars2.githubusercontent.com/u/34122068?s=460&v=4" width="50px" style="brder-radius:5px;"/>
|
||
</a>
|
||
<a name="gzh"></a>
|
||
<a href="https://github.com/xiaoliuxin" target="_blank">
|
||
<img src="https://avatars2.githubusercontent.com/u/60652527?s=460&v=4" style="border-radius:5px;" width="50px"/>
|
||
</a>
|
||
</div>
|
||
|
||
|
||
|
||
### 赞助商
|
||
|
||
以下排名不分先后! 哈哈哈,还木有收到赞助,先留坑
|
||
|
||
|
||
|
||
|
||
---
|
||
### 联系作者
|
||
|
||
<div class="open-info-div">
|
||
<!-- <a href="#gzh" target="self_blank"><img src="https://img.shields.io/badge/WeChat-公众号-5wd.svg"></a>
|
||
<a href="#wechat" target="_blank"><img src="https://img.shields.io/badge/WeChat-微信-yellow.svg"></a> -->
|
||
<a href="https://space.bilibili.com/350937042" target="_blank"><img src="https://img.shields.io/badge/Bilibili-B站-green.svg"></a>
|
||
<a href="https://142vip.cn" target="_blank"><img src="https://img.shields.io/badge/142vip-网站-orange.svg"></a>
|
||
<a href="https://blog.142vip.cn" target="_blank"><img src="https://img.shields.io/badge/blog-博客-blue.svg"></a>
|
||
<a href="https://github.com/mmdapl" target="_blank"><img src="https://img.shields.io/badge/Github-Github-9ac.svg"></a>
|
||
<a href="https://gitee.com/mmdapl" target="_blank"><img src="https://img.shields.io/badge/Gitee-码云-4ed.svg"></a>
|
||
<a href="https://blog.csdn.net/Mmdapl" target="_blank"><img src="https://img.shields.io/badge/csdn-CSDN-8ea.svg"></a>
|
||
<a href="https://juejin.im/user/448256476724807" target="_blank"><img src="https://img.shields.io/badge/JueJin-掘金-75c.svg"></a>
|
||
</div>
|
||
|
||
若系列文章对你有所帮助,欢迎订阅公众号,获取更多内容。也可微信”骚扰“,商务合作请备注来意
|
||
|
||
<!-- <div align="left">
|
||
<img src="https://cdn.jsdelivr.net/gh/lir0115/images@main/qr_code/wechat_code.jpg" width="300" height="300" style="border-radius:5px;"/>
|
||
</div> -->
|
||
|
||
|
||
<a name="gzh"></a>
|
||
|
||
|
||
<p>
|
||
<img src="https://cdn.jsdelivr.net/gh/lir0115/images@main/qr_code/gongzhonghao.jpg" style="border-radius:10px;">
|
||
</p>
|
||
|
||
交流/加群/互看朋友圈
|
||
当然:**聊天 /提问 /建议 /提需求** 可以在本公众号直接**私信**,后台可以看到,有时间即会回复,偶尔的延迟和疏漏还请小伙伴们谅解,蟹蟹。
|
||
|
||
|
||
|
||
|
||
### 外链
|
||
|
||
|