-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (29 loc) · 990 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import createPDF from "./src/pdf-generator"; // importamos el generador
const HTML_TEMP = `
<h1>HorchataJS El Salvador</h1>
<p>Ladies and gentlemen, get up on your feet and make some noise because <strong>masmerino</strong> is in the house.</p>
`;
// Agregar settings de PhantomJS segun sea necesario
/**
{
url: '', URL a ser generada, esta debe ser accesible, algunos servidores bloquean la request
html: '<p>Ladies and gentlemen, get up on your feet and make some noise because masmerino is in the house.</p>'
}
ver documentacion de la libreria para mas settings
https://www.npmjs.com/package/phantom-html-to-pdf
*/
const settings = {
filename: process.env.FILENAME || 'output',
phamtomSettings: {
html: HTML_TEMP
}
}
createPDF(settings)
.then(filename => {
console.log(`${filename} fue generado`);
console.log('CTR + C para finalizar');
})
.catch(error => {
console.log('Error en generacion del archivo', error);
console.log('CTR + C para finalizar');
});