使用node js获取外部网站内容

Get external website content using node js

在我的网站中,我使用 node js 作为后端,html 作为前端。我需要获取外部网站元数据(关键字)。

有获取node js元数据的包吗?

例如,我有 100 个网站 url 在数组中,如下所示。

var arrayName = ["http://www.realsimple.com/food-recipes/9-healthy-predinner-snacks", "http://www.womenshealthmag.com/weight-loss/100-calorie-snacks", "https://www.pinterest.com/explore/healthy-snacks/", "http://www.rd.com/slideshows/healthy-snacks-for-adults/", "http://greatist.com/snacking", "http://www.bodybuilding.com/fun/26-best-healthy-snacks.html"]

我需要获取所有网站元数据,尤其是元数据关键字中的元数据。 在节点 js 中有任何包吗?

我在 google 中找到了一些代码。

var options = {
host: 'www.google.com',
port: 80,
path: '/index.html'
};

http.get(options, function(res) {
console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
console.log("Got error: " + e.message);
});

还有其他选择吗?

预期产出:

Array1 = ["keyword1","keyword2","keyword3"];
Array2 = ["keyword1","keyword2","keyword3"];
Array3 = ["keyword1","keyword2","keyword3"];

Array1, Array2, Array3 是这样的Site1,Site2,Site3

我建议您使用以下软件包中的任何一个:

Note: You need to code it by yourself to grasp keywords from site data.