上兩篇文章,我們講了如何在 Terminal 里調(diào)用服務(wù)瓦呼,只需要輸入:serverless invoke -f hello -l -d Kenny鍋
那么問(wèn)題來(lái)了喂窟,我們要調(diào)試時(shí),總不能每次都要部署到 AWS 服務(wù)端吧央串,這樣效率比較低磨澡!我們能在本地調(diào)試好了,最后部署到 AWS 上嗎质和? 答案是:可以稳摄!
1.使用 Terminal 調(diào)試
這個(gè)比較簡(jiǎn)單,只需在 invoke 后加上 local
就行饲宿,具體寫(xiě)法:serverless invoke local -f hello -l -d Kenny鍋
就算是這么調(diào)試厦酬,好像也不太方便,如果能在 Insomnia瘫想、Postman 之類的工具調(diào)試就好了仗阅,當(dāng)然沒(méi)問(wèn)題。但有會(huì)稍微麻煩一點(diǎn)點(diǎn)殿托。只要跟我下面的步驟霹菊,你 5 分鐘就能完成。
2. 使用工具調(diào)試
2.1 安裝 serverless-offline
在 Terminal 里執(zhí)行:yarn add serverless-offline -D
2.2 修改 serverless.yml
打開(kāi)根目錄下的 serverless.yml
支竹,在 handler:
那行下面添加如下配置:
events:
- http:
path: hello/{name}
method: get
plugins:
- serverless-offline
為了減少大家出錯(cuò)的情況,這里給出全部 serverless.yml 內(nèi)容:
service: hello-world
provider:
name: aws
runtime: nodejs8.10
functions:
hello:
handler: index.greeting
events:
- http:
path: hello/{name}
method: get
plugins:
- serverless-offline
2.3 修改 js 文件
添加取值的代碼鸠按,見(jiàn):
const {pathParameters = {}} = event;
const {name = '無(wú)名女尸'} = pathParameters;
const message = `你好礼搁,${ name }.`;
index.js 完整代碼,見(jiàn):
const greeting = async (event, context) => {
const {pathParameters = {}} = event;
const {name = '無(wú)名女尸'} = pathParameters;
const message = `你好目尖,${ name }.`;
return {
statusCode: 200,
body: JSON.stringify({
message
}),
};
};
module.exports = { greeting };
為什么能接收 name 呢馒吴? 因?yàn)槲覀冊(cè)?serverless.yml 的 path 里配置這個(gè)路由,然后就可以在 js 里取值瑟曲。 順便提一下 event 和 context 參數(shù)吧:
- event 對(duì)象里有用的值并不多饮戳,見(jiàn):
{ headers:
{ Host: 'localhost:3000',
'User-Agent': 'insomnia/6.3.2',
Accept: '*/*' },
multiValueHeaders:
{ Host: [ 'localhost:3000' ],
'User-Agent': [ 'insomnia/6.3.2' ],
Accept: [ '*/*' ] },
path: '/hello/Kenny',
pathParameters: { name: 'Kenny' },
requestContext:
{ accountId: 'offlineContext_accountId',
resourceId: 'offlineContext_resourceId',
apiId: 'offlineContext_apiId',
stage: 'dev',
requestId: 'offlineContext_requestId_6815488628284807',
identity:
{ cognitoIdentityPoolId: 'offlineContext_cognitoIdentityPoolId',
accountId: 'offlineContext_accountId',
cognitoIdentityId: 'offlineContext_cognitoIdentityId',
caller: 'offlineContext_caller',
apiKey: 'offlineContext_apiKey',
sourceIp: '127.0.0.1',
cognitoAuthenticationType: 'offlineContext_cognitoAuthenticationType',
cognitoAuthenticationProvider: 'offlineContext_cognitoAuthenticationProvider',
userArn: 'offlineContext_userArn',
userAgent: 'insomnia/6.3.2',
user: 'offlineContext_user' },
authorizer:
{ principalId: 'offlineContext_authorizer_principalId',
claims: undefined },
protocol: 'HTTP/1.1',
resourcePath: '/hello/{name}',
httpMethod: 'GET' },
resource: '/hello/{name}',
httpMethod: 'GET',
queryStringParameters: null,
multiValueQueryStringParameters: null,
stageVariables: null,
body: null,
isOffline: true }
- context 里有用的東西就更少了,見(jiàn):
{ done: [Function],
succeed: [Function: succeed],
fail: [Function: fail],
getRemainingTimeInMillis: [Function: getRemainingTimeInMillis],
functionName: 'hello-world-dev-hello',
memoryLimitInMB: undefined,
functionVersion: 'offline_functionVersion_for_hello-world-dev-hello',
invokedFunctionArn: 'offline_invokedFunctionArn_for_hello-world-dev-hello',
awsRequestId: 'offline_awsRequestId_7983077759511026',
logGroupName: 'offline_logGroupName_for_hello-world-dev-hello',
logStreamName: 'offline_logStreamName_for_hello-world-dev-hello',
identity: {},
clientContext: {} }
為了讓大家跟我的目錄保持一致洞拨,下面列出我的項(xiàng)目結(jié)構(gòu):
├── index.js
├── node_modules
├── package.json
├── serverless.yml
└── yarn.lock
2.4 啟動(dòng)服務(wù)
現(xiàn)在來(lái)試試吧扯罐,在 Terminal 里執(zhí)行:sls offline
。如果啟動(dòng)成功烦衣,會(huì)在3000 端口上啟動(dòng)服務(wù)歹河,見(jiàn):
Serverless: Starting Offline: dev/us-east-1.
Serverless: Routes for hello:
Serverless: GET /hello/{name}
Serverless: Offline listening on http://localhost:3000
這個(gè)時(shí)候掩浙,我們就可以在 Insomnia 里輸入:http://localhost:3000/hello/Kenny,見(jiàn):
因?yàn)槭?get 請(qǐng)求秸歧,所以用瀏覽器也可以打開(kāi)厨姚。
2.5 自動(dòng)重載代碼
我們總是想盡一切辦法提升工作、開(kāi)發(fā)效率键菱,比如 webpack 和 nodemon 有 reload
的功能谬墙,當(dāng)然 serverless-offline 也有。
serverless offline --useSeparateProcesses
相關(guān)文章
- Serverless 入門(一) - 創(chuàng)建 IAM http://www.reibang.com/p/9fb731a799e2
- Serverless 入門(二) - HelloWord http://www.reibang.com/p/ddf2ffda5f63
- Serverless 入門(三)- 初始項(xiàng)目解讀 http://www.reibang.com/p/8baba2a8fe9f
- Serverless 入門(四)- 如何調(diào)試 http://www.reibang.com/p/58d30915de8a
- Serverless 入門(五)- 常用命令 http://www.reibang.com/p/28f001ea9d9d
- Serverless 入門(六)- DynamoDB 數(shù)據(jù)庫(kù)(上) http://www.reibang.com/p/c313b61d1cbf
- Serverless 入門(七)- DynamoDB 數(shù)據(jù)庫(kù)(中) http://www.reibang.com/p/05e7f4ccd6fe
- Serverless 入門(八)- DynamoDB 數(shù)據(jù)庫(kù)(下) http://www.reibang.com/p/0f9f1561ec46
- Serverless 入門(九)- 權(quán)限 http://www.reibang.com/p/97228749d761