木偶,保存网页和图像

时间:2018-12-05 20:41:39

标签: javascript node.js html5 web-scraping puppeteer

我正在尝试保存一个网页,以供Nodejs和puppeteer脱机使用。我看到了很多例子:

await page.screenshot({path: 'example.png'});

但是对于较大的网页,这不是一个选择。因此,在puppeteer中更好的选择是加载页面,然后像这样保存:

const html = await page.content();
// ... write to file

好,行得通。现在,我将像推特一样滚动页面。因此,我决定屏蔽木偶页面中的所有图像:

page.on('request', request => {
    if (request.resourceType() === 'image') {
        const imgUrl = request.url()
        download(imgUrl, 'download').then((output) => {
            images.push({url: output.url, filename: output.filename})
        }).catch((err) => {
            console.log(err)
        })
        request.abort()
    } else {
        request.continue()
    }
})

好的,我现在使用'npm download'lib下载所有图像。是的,下载图像还可以:D。

现在,当我保存内容时,我想将其指向源中的脱机图像。

const html = await page.content();

但是现在我想替换所有

<img src="/pic.png?id=123"> 
<img src="https://twitter.com/pics/1.png">

还有类似的东西

<div style="background-image: url('this_also.gif')></div>

那么有没有办法(在操纵up中)刮掉一个大页面并离线存储整个内容?

JavaScript和CSS也将很好

更新

现在,我将再次使用puppeteer打开html大文件。

然后将所有文件拦截为: https://dom.com/img/img.jpg,/ file.jpg,....

request.respond({
    status: 200,
    contentType: 'image/jpeg',
    body: '..'
});

我也可以使用Chrome扩展功能。但是我喜欢有一个带有一些选项page.html()的函数,与page.pdf()一样

2 个答案:

答案 0 :(得分:1)

让我们回到第一个,您可以使用fullPage来截取屏幕截图。

await page.screenshot({path: 'example.png', fullPage: true});

如果您真的想将所有资源下载到离线状态,可以的:

const fse = require('fs-extra');

page.on('response', (res) => {
    // save all the data to SOMEWHERE_TO_STORE
    await fse.outputFile(SOMEWHERE_TO_STORE, await res.buffer());
});

然后,您可以通过puppeteer离线浏览网站,一切正常。

await page.setRequestInterception(true);
page.on('request', (req) => {
    // handle the request by responding data that you stored in SOMEWHERE_TO_STORE
    // and of course, don't forget THE_FILE_TYPE
    req.respond({
        status: 200,
        contentType: THE_FILE_TYPE,
        body: await fse.readFile(SOMEWHERE_TO_STORE),
    });
});

答案 1 :(得分:0)

现在我将使用:

https://github.com/dosyago/22120

该项目的目标:

This project literally makes your web browsing available COMPLETELY OFFLINE. 
Your browser does not even know the difference. It's literally that amazing. Yes.