简体中文 | English
使用腾讯云 Koa 组件,可快速的在腾讯云创建,配置和管理一个 Koa 框架 服务。
通过 npm 安装 serverless
$ npm install -g serverless
本地创建 serverless.yml
文件:
$ touch serverless.yml
初始化一个新的 npm 包,并安装 koa:
# 创建后持续回车
$ npm init
# 安装 koa
$ npm i --save koa
创建一个 sls.js
文件,并在其中创建您的 koa App:
$ touch sls.js
const koa = require('koa')
const app = new koa()
app.use(async (ctx, next) => {
if (ctx.path !== '/') return next()
ctx.body = 'Hello from Koa'
})
// set binary types
// app.binaryTypes = [*/*];
// don't forget to export!
module.exports = app
在 serverless.yml 中进行如下配置
# serverless.yml
org: orgDemo # (optional) serverless dashboard org. default is the first org you created during signup.
app: appDemo # (optional) serverless dashboard app. default is the same as the name property.
stage: dev # (optional) serverless dashboard stage. default is dev.
component: koa # (required) name of the component. In that case, it's koa.
name: koaDemo # (required) name of your koa component instance.
inputs:
src:
src: ./ # (optional) path to the source folder. default is a hello world app.
exclude:
- .env
region: ap-guangzhou
runtime: Nodejs10.15
apigatewayConf:
protocols:
- http
- https
environment: release
如您的账号未登陆或注册腾讯云,您可以直接通过微信
扫描命令行中的二维码进行授权登陆和注册。
通过sls
命令进行部署,并可以添加--debug
参数查看部署过程中的信息
注:
sls
命令是serverless
命令的缩写
$ sls deploy
部署完毕后,可以在浏览器中访问部署成功地 url。
通过以下命令移除部署的 Koa 服务。
$ sls remove
当前默认支持 CLI 扫描二维码登录,如您希望配置持久的环境变量/秘钥信息,也可以本地创建 .env
文件
$ touch .env # 腾讯云的配置信息
在 .env
文件中配置腾讯云的 SecretId 和 SecretKey 信息并保存
如果没有腾讯云账号,可以在此注册新账号。
如果已有腾讯云账号,可以在API 密钥管理中获取 SecretId
和SecretKey
.
# .env
TENCENT_SECRET_ID=123
TENCENT_SECRET_KEY=123
可以在 Serverless Components repo 中查询更多组件的信息。
MIT License
Copyright (c) 2020 Tencent Cloud, Inc.