Release 1.0.0
Egg framework for Aliyun.
$ npm install aliyun-egg --save
Aliyun egg is a framework for nodejs web applation deployed on Aliyun and related services. It has built-in plugins to support Aliyun RDS, OSS and Alinode.
RDS
OSS
Alinode
First you should visit https://cn.aliyun.com/product/rds/mysql?spm=a21gt.99266.416540.38.qyVigh for more detail, and config in config/config.default.js.
config/config.default.js
// config/config.${env}.js exports.mysql = { // 单数据库信息配置 client: { // host host: 'mysql.com', // 端口号 port: '3306', // 用户名 user: 'test_user', // 密码 password: 'test_password', // 数据库名 database: 'test', }, // 是否加载到 app 上,默认开启 app: true, // 是否加载到 agent 上,默认关闭 agent: false, };
First you should visit https://cn.aliyun.com/product/oss?spm=a21gt.99266.416540.51.qyVigh for more detail, and config in config/config.default.js.
exports.oss = { client: { accessKeyId: 'your access key', accessKeySecret: 'your access secret', bucket: 'your bucket name', endpoint: 'oss-cn-hongkong.aliyun.com', timeout: '60s', }, };
First you should visit https://alinode.aliyun.com/ for more detail, and config in config/config.default.js.
exports.alinode = { appid: 'my app id', secret: 'my app secret', };
For example you can refer to [aliyun]https://github.com/eggjs/egg-showcase-aliyun-blog
MIT
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
aliyun-egg
Egg framework for Aliyun.
Requirement
Installation
Usage
Aliyun egg is a framework for nodejs web applation deployed on Aliyun and related services. It has built-in plugins to support Aliyun
RDS,OSSandAlinode.Use RDS
First you should visit https://cn.aliyun.com/product/rds/mysql?spm=a21gt.99266.416540.38.qyVigh for more detail, and config in
config/config.default.js.Use OSS
First you should visit https://cn.aliyun.com/product/oss?spm=a21gt.99266.416540.51.qyVigh for more detail, and config in
config/config.default.js.Use Alinode
First you should visit https://alinode.aliyun.com/ for more detail, and config in
config/config.default.js.Example
For example you can refer to [aliyun]https://github.com/eggjs/egg-showcase-aliyun-blog
License
MIT