问题
I'm looking to write a custom library in node and I'd like to include that with my Cloud Functions. Since this is shared code, I'd like to be able to use it across all my Cloud Functions.
What's the best way to write a library of shared code and have that accessed by multiple Cloud Functions.
For example, say I have two Cloud Functions, functionA and functionB.
I have a node javascript file called "common.js" that has a javascript function that I'd like to expose to both functionA and functionB.
exports.common = {
log: function(message) {
console.log('COMMON: ' + message);
}
};
So in functionA I'd like to require this file and call "common.log('test');".
I see this as the most basic of questions but I honestly can't find an answer anywhere.
Any help would be most appreciated. This is literally the ONLY thing preventing me from using GCF as the way I develop code now and into the future!
回答1:
If you use the gcloud command line tool to deploy your function it will upload all1 the files in your local directory, so any normal Node.js way of doing an include/require should work.
In Node.js, writing require('./lib/common')
will include the common.js
file in the lib
subdirectory. Since your file exports an object named common
you can reference it directly off the returned object from require
. See below.
File layout
./
../
index.js
lib/common.js
index.js
// common.js exports a 'common' object, so reference that directly.
var common = require('./lib/common').common;
exports.helloWorld = function helloWorld(req, res) {
common.log('An HTTP request has been made!');
res.status(200);
}
Deploy
$ gcloud functions deploy helloWorld --trigger-http
Note
1 Currently gcloud
won't upload npm_modules/
directory unless you specify --include-ignored-files
(see gcloud docs)
来源:https://stackoverflow.com/questions/42550163/google-cloud-functions-include-private-library