我想知道是否有人使用无服务器框架和azure函数以及如何处理函数和函数之间的共享代码。捆绑?
我正在将hapi.js应用转换为serverless + serverless-azure-functions,我正在尝试在部署之前捆绑我的代码,因此我可以将各种require
用于可重复使用的模块。
我发现serverless-webpack并且它创建了可能适用于AWS Lambda的捆绑包但由于缺少function.json
个文件(例如list-function.json
)而在azure上存在问题,因此功能在azure-portal中根本看不到,也无法调用它们。
还发现article有关此问题,但它显示了如何使用仅支持Windows平台的azure-functions-cli
处理此问题。
最好,JH
答案 0 :(得分:2)
从https://medium.com/a-man-with-no-server/deploying-a-serverless-application-using-webpack-and-babel-to-support-es2015-to-aws-2f61cff8bafb获取提示,我使用serverless-webpack
修改了无服务器的azure函数启动测试项目,这似乎满足了您的要求。
我在无服务器azure函数项目的根目录中构建了一个src
文件夹,作为开发源代码文件夹。有2个测试文件:
handler.js
'use strict';
let tool = require("./tool");
/* eslint-disable no-param-reassign */
module.exports.hello = function (context) {
context.log('JavaScript HTTP trigger function processed a request.');
context.res = {
// status: 200, /* Defaults to 200 */
body: tool.hello(),
};
context.done();
};
tool.js
module.exports={
hello:()=>{
return "hello world";
}
}
根目录中的 webpack.config.js
:
var nodeExternals = require('webpack-node-externals')
module.exports = {
entry: './src/handler.js',
target: 'node',
externals: [nodeExternals()],
output: {
libraryTarget: 'commonjs',
path: __dirname,
filename: 'handler.js', // this should match the first part of function handler in serverless.yml
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
include: __dirname,
loaders: ["babel-loader"]
}
]
}
};
使用哪个配置文件,out捆绑文件将位于根目录中的service/handler.js
。
所以我也修改了serverless.yml
,现在部分看起来像是:
package:
include:
- service/handler.js
exclude:
- handler.js
functions:
hello:
handler: service/handler.hello
events:
- http: true
x-azure-settings:
authLevel : anonymous
- http: true
x-azure-settings:
direction: out
name: res
custom:
webpackIncludeModules:
packagePath: './package.json'
修改完成后,使用serverless deploy
将文件捆绑在src
文件夹中,然后打包并部署到azure函数。
希望它有所帮助。