Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jul 14, 2023. It is now read-only.

Commit 7ebbaf5

Browse files
author
Chengkai Wang
authored
Merge pull request #15 from hduhelp/eson_doc
update document
2 parents 81332e8 + 8662607 commit 7ebbaf5

File tree

14 files changed

+122
-24
lines changed

14 files changed

+122
-24
lines changed

‎README.md‎

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,29 @@
33
## 一些普适性的建议和内容
44

55
* 使用Unix操作系统来完成环境和开发
6-
76
* 使用Goland作为Golang语言IDE,使用vscode完成文本编辑等操作
87

9-
## 目录
8+
## 快速导航
109

1110
* [WSL Windows Linux 子系统](./windows/README.md)(Windows 用户 强烈建议)
1211
* [Brew Unix 包管理工具](./unix/Brew.md)(可选)
1312
* [Git 版本控制工具](./common/git.md)
14-
* [Goland 最好的Golang IDE](./jetBrains/README.md)
13+
* [Goland 最好的Golang IDE](./jetBrains/commonware.md)
14+
* [Shell 使用基本逻辑](./unix/shell.md)
15+
16+
17+
# 综合目录
18+
19+
### [git 与版本控制](./git)
20+
21+
### [go 语言相关](./golang)
22+
23+
### [jetBrains ](./jetBrains)
24+
25+
### [unix 下开发与环境配置](./unix)
26+
27+
### [win 下开发与环境配置](./windows)
28+
29+
### [公共 杂项](./common)
30+
31+

‎common/README.md‎

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 通用知识
2+
3+
### [./](./)
4+
5+
### [../](../)
6+
7+
### [网络代理](./network.md)
8+
9+
### [WEB 开发中的前后端分离](./networkKnowledge.md)
10+
11+
### [面向对象开发思想](./oop.md)

‎common/network.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# 网络优化
1+
# 网络优化与代理
22

33
由于中国大陆互联网网络情况不佳,访问境外网络受阻,我们通常会使用代理加速或者镜像访问开发者内容
44

55
以下内容需要或者在网络优化后有更好的访问体验
66

77
* [GitHub](https://github.com) 世界最大的开源版本控制平台
8-
* [Golang 官网](https://golang.org)
8+
* [Golang 官网](https://golang.org)
99
* [pkg.go.dev](https://pkg.go.dev) Go 包文档中心
1010

1111
## 镜像

‎common/networkKnowledge.md‎

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,12 @@ https://www.infoq.cn/article/mnftt4ubk5pql3jpnt6m
9898

9999
> 不要有一把锤子,看什么都是钉子
100100
101-
在Web项目开发前应当预估项目规模、技术栈等等需求再去决定开发模式,而不是无脑前后端分离。在一些开发时间紧的项目里,`PHP` (不分离)显然是比 `Golang` (分离) 更好的选择。当然,在时间允许的情况下,尽量采取前后端分离的开发模式,这在后续团队规模扩大、项目复杂度变高后会体现出非常大的优势。
101+
在Web项目开发前应当预估项目规模、技术栈等等需求再去决定开发模式,而不是无脑前后端分离。
102+
在一些开发时间紧的项目里,`PHP` (不分离)显然是比 `Golang` (分离) 更好的选择。
103+
当然,在时间允许的情况下,尽量采取前后端分离的开发模式,这在后续团队规模扩大、项目复杂度变高后会体现出非常大的优势。
104+
105+
> 这里可以安利一下 Cloudflare 的 pages 作为前端的部署, 也可以当作博客的网页做自动部署 他自己会有前端项目的 CI/CD
106+
>
107+
> 支持 Vue React 乃至是 hexo 和 hugo 的部署
108+
>
109+
> cloudflare 的产品非常适合托管你的域名帮助你更好更快的完成你的全栈级开发

‎git/README.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 版本控制 Git
2+
3+
### [./](./)
4+
5+
### [../](../)
6+
7+
### [git 基础入门](./git.md)
8+
9+
### [github 基本与进阶](./github.md)

‎golang/README.md‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Golang 开发基本功
2+
3+
### [./](./)
4+
5+
### [../](../)
6+
7+
### [go 基础语法](./basicGrammar.md)
8+
9+
### [go 特性自查表](./feature.md)
10+
11+
### [go 基本框架介绍](./framework.md)
12+
13+
### [go 包管理历史与使用](./package.md)
14+
15+
### [go 后端速成](./quickstart.md)
16+

‎golang/framework.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# go 基本框架介绍
2+
3+
// to be continued

‎golang/quickStart.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@
99

1010
## 这里插一节简单的网络知识、前后端交互课
1111

12+
* [backend guide](../common/networkKnowledge.md)
13+
1214
## git 操作文档
1315
* [git教程](https://www.liaoxuefeng.com/wiki/896043488029600)
16+
* [backend guide](../git)
17+
1418

1519
## Gin —— web 框架
1620

‎jetBrains/README.md‎

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# JetBrains
1+
# 关于 jetbrains 家相关工具的使用
22

3-
##介绍
3+
### [./](./)
44

5-
### 安装 Goland IDE
5+
### [../](../)
66

7-
下载安装包安装<https://www.jetbrains.com/zh-cn/go/>
7+
### [IDE 与管理](./commonware.md)
88

9-
### JetBrains Toolbox 安装
10-
11-
<https://www.jetbrains.com/toolbox-app/>
9+
### [教育邮箱](./edu.md)

‎jetBrains/commonware.md‎

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# JetBrains
2+
3+
## 介绍
4+
5+
### 安装 Goland IDE
6+
7+
下载安装包安装<https://www.jetbrains.com/zh-cn/go/>
8+
9+
### JetBrains Toolbox 安装
10+
11+
<https://www.jetbrains.com/toolbox-app/>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /