phantom-pdf 0.2.2、phantomjs 1.9.15、および jsreports 0.2.3 を Azure に npm と共にインストールしました。デプロイ時に package.json を使用して azure をインストールしましたが、Recipe phantom-pdf が見つかりませんでしたというエラーが表示されます。このルートに行くとき:
app.route('/pdfreport')
.get(function (req, res) {
require('jsreport').render({
template: {
content: "blank",
phantom: {
url: "http://google.com",
orientation: "portrait",
width: "300px"
}
}
}).then(function(out) {
out.result.pipe(res);
}).fail(function(e) {
console.log(e);
});
});
私は一体何を間違っているのでしょうか?ローカルの Mac とローカルの Windows マシンの両方で動作します