在互联网上的其他任何地方找不到合适的答案后,我正在提交这个问答自己的教程
如何通过PhantomJS
上的NodeJS
脚本运行简单的AWS Lambda
流程?我的代码在我的本地机器上工作正常,但我遇到了尝试在Lambda上运行它的不同问题。
答案 0 :(得分:28)
以下是简单PhantomJS
流程的完整代码示例,该流程以NodeJS
child_process
的形式启动。 It is also available on github
index.js
var childProcess = require('child_process');
var path = require('path');
exports.handler = function(event, context) {
// Set the path as described here: https://aws.amazon.com/blogs/compute/running-executables-in-aws-lambda/
process.env['PATH'] = process.env['PATH'] + ':' + process.env['LAMBDA_TASK_ROOT'];
// Set the path to the phantomjs binary
var phantomPath = path.join(__dirname, 'phantomjs_linux-x86_64');
// Arguments for the phantom script
var processArgs = [
path.join(__dirname, 'phantom-script.js'),
'my arg'
];
// Launc the child process
childProcess.execFile(phantomPath, processArgs, function(error, stdout, stderr) {
if (error) {
context.fail(error);
return;
}
if (stderr) {
context.fail(error);
return;
}
context.succeed(stdout);
});
}
幻像的script.js
var system = require('system');
var args = system.args;
// Example of how to get arguments passed from node script
// args[0] would be this file's name: phantom-script.js
var unusedArg = args[1];
// Send some info node's childProcess' stdout
system.stdout.write('hello from phantom!')
phantom.exit();
要获得适用于亚马逊Linux机器的PhantomJS二进制文件,请转到PhantomJS Bitbucket Page并下载phantomjs-1.9.8-linux-x86_64.tar.bz2
。
答案 1 :(得分:5)
通用解决方案是使用实际的AWS Linux机器来安装npm模块并将它们传输到lambda可执行文件。以下是步骤:
scp
这是一个包含更多资源链接的教程: Compile node module libraries for AWS Lambda
当PhantomJS是另一个节点模块的依赖项时,这也适用于这种情况,例如。 node-webshot,你对正在安装的内容影响较小。