├── LICENSE
├── README.md
└── logo.svg
/LICENSE:
--------------------------------------------------------------------------------
1 | LICENSE - "MIT License"
2 |
3 | Copyright (c) 2016 by Tencent Cloud
4 |
5 | Permission is hereby granted, free of charge, to any person
6 | obtaining a copy of this software and associated documentation
7 | files (the "Software"), to deal in the Software without
8 | restriction, including without limitation the rights to use,
9 | copy, modify, merge, publish, distribute, sublicense, and/or sell
10 | copies of the Software, and to permit persons to whom the
11 | Software is furnished to do so, subject to the following
12 | conditions:
13 |
14 | The above copyright notice and this permission notice shall be
15 | included in all copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 | OTHER DEALINGS IN THE SOFTWARE.
25 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Wafer - 快速构建具备弹性伸缩能力的微信小程序
2 | =========================================
3 |
4 | Wafer 是腾讯云面向广大开发者提供的小程序开发全栈资源套件,套件提供小程序会话管理服务和 WebSocket 信道服务,部署方式具备良好的弹性伸缩能力,可以快速应对业务的爆发增长,同时具备较低的开发门槛。
5 |
6 | 如果你希望自己动手搭建小程序,[小程序实验室](https://www.qcloud.com/developer/labs/lab/10004)将提供 step by step 的教程帮助你完成目标!
7 |
8 | 阅读 [Wiki](https://github.com/tencentyun/wafer/wiki) 文档了解 Wafer 提供的服务、部署方法、架构设计以及实现细节。
9 |
10 | 使用过程中若有疑问,欢迎到[腾讯云开发者问答社区](https://www.qcloud.com/developer/ask)进行提问。
11 |
12 | ## Wafer2 正式发布
13 |
14 | 开发者工具方案(以下简称 Wafer2)是 2017 年腾讯云基于原来的 Wafer 解决方案(以下简称 Wafer1)并与微信团队深度定制合作的一站式小程序解决方案,Wafer 团队基于腾讯云强大的 IaaS 能力搭建了一个 PaaS 小程序解决方案,用户只需要开通,即可使用开发者工具上传、部署、调试小程序后端代码,无需了解服务器运维、数据库部署搭建即可使用。
15 |
16 | [点击查看Wafer2 指引](https://github.com/tencentyun/wafer2-quickstart)
17 |
18 | ## Wafer1 开发者资源索引
19 |
20 | * 客户端
21 | - [SDK](https://github.com/tencentyun/wafer-client-sdk) - 客户端增强 SDK 源码
22 | - [Demo](https://github.com/tencentyun/wafer-client-demo) - 客户端 Demo
23 | * 业务服务器
24 | - [PHP SDK](https://github.com/tencentyun/wafer-php-server-sdk) - PHP 解决方案的 SDK 源码及 Demo
25 | - [C# SDK](https://github.com/tencentyun/wafer-csharp-server-sdk) - C# 解决方案的 SDK 源码及 Demo
26 | - [Java SDK](https://github.com/tencentyun/wafer-java-server-sdk) - Java 解决方案的 SDK 源码及 Demo
27 | - [Node SDK](https://github.com/tencentyun/wafer-node-server-sdk) - Node 解决方案的 SDK 源码及 Demo
28 | * 会话服务器
29 | - [Session Server](https://github.com/tencentyun/wafer-session-server) - PHP 会话服务器的源码
30 | - [Node Middleware](https://github.com/tencentyun/wafer-node-session) - 独立 NodeJS 会话服务中间件
31 | * 微信小程序文档
32 | - [小程序介绍](https://mp.weixin.qq.com/debug/wxadoc/introduction)
33 | - [设计指南](https://mp.weixin.qq.com/debug/wxadoc/design/)
34 | - [开发指南](https://mp.weixin.qq.com/debug/wxadoc/dev/)
35 | - [组件](https://mp.weixin.qq.com/debug/wxadoc/dev/component/)
36 | - [API 文档](https://mp.weixin.qq.com/debug/wxadoc/dev/api/)
37 | - [开发工具下载](https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html)
38 | * 优质第三方资源
39 | - [10 分钟实现 PHP 业务](https://github.com/tencentyun/wafer/issues/5) - @tsr106
40 | - [自行部署 Wafer 的一点心得](https://github.com/tencentyun/wafer/issues/8) - @ITJaye
41 |
42 | ## 关于 Wafer
43 |
44 | Wafer 是一个愿景,希望可以给开发者提供到像晶片一样精致且可靠的开源项目,也希望和广大开发者一起进行打磨,打造健康的小程序全栈开发生态。
45 |
46 | Wafer 的全称是 Weapp Application Fullstack Essential Resources,即微信小程序全栈基础资源。
47 |
48 | 关于 Wafer 的探索历程,可以阅读[这篇文章](https://github.com/tencentyun/blog/issues/1)
49 |
50 | ## LICENSE
51 |
52 | [MIT](LICENSE)
53 |
--------------------------------------------------------------------------------
/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------