All Projects → eggjs → aliyun-egg

eggjs / aliyun-egg

Licence: other
node web framework for aliyun, base on eggjs

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to aliyun-egg

mall-by-react
一个react商城客户端和egg服务端
Stars: ✭ 22 (-53.19%)
Mutual labels:  egg
egg-kafkajs
☎️kafka plugin for eggjs
Stars: ✭ 26 (-44.68%)
Mutual labels:  egg
egg-elasticsearch
elasticsearch client for egg.js
Stars: ✭ 22 (-53.19%)
Mutual labels:  egg
TianChiProj
🏆🥈🥉 TianChiProj 天池
Stars: ✭ 22 (-53.19%)
Mutual labels:  aliyun
aliyun-oss-wordpress
使用阿里云对象存储 OSS 作为附件存储空间的WordPress插件。QQ交流群:887595381
Stars: ✭ 56 (+19.15%)
Mutual labels:  aliyun
yii2-dysms
阿里云 dysms 官方 SDK 的 Composer 封装,支持 yii2 项目。
Stars: ✭ 13 (-72.34%)
Mutual labels:  aliyun
laravel-mail-aliyun
📧 Aliyun DrirectMail Transport for Laravel Application.
Stars: ✭ 69 (+46.81%)
Mutual labels:  aliyun
node-server
(@nestjs refactoring)⚡️My personal website's api server, a RESTful application that powered by @eggjs
Stars: ✭ 17 (-63.83%)
Mutual labels:  egg
aliddns
阿里云动态DNS解析。
Stars: ✭ 17 (-63.83%)
Mutual labels:  aliyun
php-aliyun-open-api-live
阿里云直播API,使用guzzleHttp 中间件方式实现,单文件
Stars: ✭ 18 (-61.7%)
Mutual labels:  aliyun
ali-img
阿里云图像处理工具包
Stars: ✭ 16 (-65.96%)
Mutual labels:  aliyun
doctools
doctools for eggjs
Stars: ✭ 38 (-19.15%)
Mutual labels:  egg
egg-mailer
🥚 mailer plugin for egg
Stars: ✭ 23 (-51.06%)
Mutual labels:  egg
vue-oss
基于vue2+plupload的阿里云OSS上传组件(支持断点续传,可上传size>100M的文件)
Stars: ✭ 33 (-29.79%)
Mutual labels:  aliyun
aliyunddns
python 实现阿里云DNS动态解析
Stars: ✭ 32 (-31.91%)
Mutual labels:  aliyun
socks-proxy
优雅访问国外技术网站 方便程序员学习 按时收费 不用不花钱
Stars: ✭ 15 (-68.09%)
Mutual labels:  aliyun
egg-vue-webpack-dev
基于egg + vue2 + webpack2 的前后端集成开发编译构建插件
Stars: ✭ 29 (-38.3%)
Mutual labels:  egg
tiny-oss
A tiny aliyun oss sdk for browser which focus on uploading.
Stars: ✭ 25 (-46.81%)
Mutual labels:  aliyun
egg-view-pug
egg view plugin for pug.
Stars: ✭ 24 (-48.94%)
Mutual labels:  egg
egg-view-react
egg view plugin for react
Stars: ✭ 89 (+89.36%)
Mutual labels:  egg

aliyun-egg

NPM version build status Test coverage David deps npm download

Egg framework for Aliyun.

Requirement

  • node >= 4.0.0

Installation

$ npm install aliyun-egg --save

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, OSS and Alinode.

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.

// 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,
};

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.

exports.oss = {
  client: {
    accessKeyId: 'your access key',
    accessKeySecret: 'your access secret',
    bucket: 'your bucket name',
    endpoint: 'oss-cn-hongkong.aliyun.com',
    timeout: '60s',
  },
};

Use Alinode

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',
};

Example

For example you can refer to [aliyun]https://github.com/eggjs/egg-showcase-aliyun-blog

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].