Попробуйте этот пример Или нажмите на ссылку ниже:
https://www.npmjs.com/package/node-iframe-replacement
var iframeReplacement = require ('node-iframe-replace');
// добавить замену iframe к express в качестве промежуточного программного обеспечения (добавляет метод res.merge) app.use (iframeReplacement);
// создать обычный express маршрут app.get ('/' , function (req, res) {
// respond to this request with our fake-news content embedded within the BBC News home page
res.merge('fake-news', {
// external url to fetch
sourceUrl: 'http://www.bbc.co.uk/news',
// css selector to inject our content into
sourcePlaceholder: 'div[data-entityid="container-top-stories#1"]',
// pass a function here to intercept the source html prior to merging
transform: null
});
});