Web Crawling Node.js Code - 1
- Edu
- 2018. 11. 2.
http-req01.js
var client = require('cheerio-httpcli');
// Google에서 "node.js"에 대한 검색한다.
var word = 'node.js';
client.fetch('http://www.google.com/search', { q: word }, function (err, $, res, body) {
// 응답 헤더를 참조
console.log(res.headers);
// HTML 제목을 표시
console.log($('title').text());
// 링크 목록을 표시
$('a').each(function (idx) {
console.log($(this).attr('href'));
});
});
http-req02.js
var client = require('cheerio-httpcli');
// Google에서 "node.js"에 대한 검색한다.
var word = '빅데이터';
client.fetch('http://www.google.com/search', { q: word }, function (err, $, res, body) {
// 응답 헤더를 참조
console.log(res.headers);
// HTML 제목을 표시
console.log($('title').text());
// 링크 목록을 표시
$('a').each(function (idx) {
console.log($(this).attr('href'));
});
});
'Edu' 카테고리의 다른 글
MS 윈도우 10 단축키 모음 (0) | 2020.04.26 |
---|---|
갤럭시 노트(Galaxy Note)9에서 통화 중 녹음 설정 (0) | 2019.08.05 |
Web Crawling Node.js Code - 2 (0) | 2018.11.23 |
특수문자 리스트 (0) | 2017.12.20 |
Free Fonts(무료 서체) (0) | 2017.10.25 |