1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-26 09:14:06 +08:00
ContextOS/usr/wiki/context.md
2018-09-15 12:03:44 +08:00

36 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 《跟我学编程》简介
跟我学编程在用golang开发context过程中对所有新想法的记录总结将各种技术融合到一起开发自己的一整套系统。
context 是用 golang 开发的一款系统级应用。
- 一种新的应用框架,可以快速开发出各种实用工具。
- 一种新的编程语言,可以用脚本编写各种业务应用。
- 通过接口文本化,解除函数之间的硬性依赖,提高代码复用率。
- 把每个函数当成一个服务来开发,把每个进程当一个集群来开发,实现微集群效应。
- 每个函数既可以在浏览器中调用,也可以在命令行中调用,更可以当成库函数调用。
### 项目进度
- 2017.11.01 项目启动
- 2018.07.30 1.0 发布
### 相关链接
- 开发者邮箱: <shylinux@163.com>
- 源码: <https://github.com/shylinux/context>
- 文档: <https://shylinux.com/wiki/context.md>
### 源码安装
首先安装好golang开发工具(参考: <https://shylinux.com/wiki/golang.md>)。
```
$ git clone https://github.com/shylinux/context
$ cd context && make
$ bench
> pwd
> ls
```
## golang编程实践
## context使用指南
## context模块开发
## context系统设计