Tech Tips

  1. Uncategorized
  2. 391 view

[node.js]what libraries we can use for crawling website : cheerio


I’ll use libraries which are “request” and “cheerio”.
npm install request
npm install cheerio
“request” allows us to get data from target URL.
And then, “cheerio” allows us to analyse the retrieved data with DOM. Sample is following.
#!/usr/bin/env node

var request = require("request");
var cheerio = require("cheerio");

var request_url = "http://www.google.com";

request({url: request_url}, function(error, response, body)
{
  if (!error && response.statusCode == 200) {
    $ = cheerio.load(body);

    var url = response.request.href;
    var title = $("title").text();

    console.log(url);
    console.log(title);
  } else {
    console.log(response.statusCode);
  }
});

Uncategorized recent post

  1. Run Amazon FreeRTOS on M5Stack Core2 for AWS …

  2. Udacity Self-Driving Car Engineer Nanodegree …

  3. Install sbt 1.0.0 and run sample template

  4. Visualization of Neural Network and its Train…

  5. [Machine Learning]Created docker image includ…

関連記事

PAGE TOP