我目前正在编写很多Firebase函数,其中一些函数共享相同的变量和函数。 目前我将它们复制粘贴到每个Firebase函数文件中,因为它们是孤立的,但我不知道在它们之间共享代码的最佳做法是什么?对于变量,配置文件很酷,对于代码来说,所有函数都可以继承的类,但是我不确定如何清理它?
组织:目前我有一个index.js文件,它引用了我拥有的所有Firebase功能。每个Firebase函数都是一个JS文件。这是我所拥有的等级制度,不是最佳的,也不是可维持的......
实施例
任何人都有过想法?谢谢你的帮助!
答案 0 :(得分:3)
对于我的Functions项目,我一直把我的可重用资源放到functions/lib
中,并且通常需要它们作为npm模块。我也从定义中分离出函数中使用的代码,这有助于测试。
例如,考虑这个结构:
functions/
|-index.js
|-newWidget.function.js
|-lib/
| |-Widget.js
test/
|-newWidget.functions.spec.js
现在,如果我想声明触发器来处理新的小部件,我会执行以下操作:
// functions/index.js:
const functions = require('firebase-functions');
exports.processNewWidget = functions.https.onRequest(require('./newWidget.function.js').process);
// functions/newWidget.function.js
exports.process = function(req, res) {
res.send('Hello world!');
};
// test/newWidget.function.spec.js
// Note how we can easily test our widget processor separate from
// the third-party dependencies!
const newWidget = require('../functions/newWidget.function.js');
describe('newWidget', () => {
describe('process', () => {
it('should send hello world', function() {
const req = {};
cost res = { send: () => {} };
spyOn(res.send);
newWidget.process(req, res);
expect(res.send).toHaveBeenCalledWith('Hello world!');
});
});
});
要在newWidget.functions.js中包含一个名为Widget的类,我会这样做:
// functions/lib/Widget.js
class Widget {
constructor(name) { this.name = name; }
}
exports.Widget = Widget;
// functions/newWidget.function.js
class Widget = require('./lib/Widget').Widget;
exports.process = function(req, res) => {
const widget = new Widget(req.param.name);
res.send(widget.name);
};
答案 1 :(得分:1)
将您的功能置于GitHub仓库下并从主分支中调用它们不是一种选择吗?我目前正在package.json中导入:
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"dependencies": {
"cex-converter": "https://github.com/joaquinperaza/cex-converter/tarball/master"
},
"private": true
}
然后你只需要你的conde依赖项,如require('cex-converter')
,你得到你的依赖项的最后一个版本,并且不需要修改任何东西来部署你的上一个版本。