Node.js 를 이용해 와이고수(ygosu) 크롤링
2018.03.02
와이고수를 크롤링해야될 일이있어서, 작성중인데 일단 작성코드들을 조금씩 조금씩 정리하며 올릴 예정이다. 혹여나 이 글을 보는 사람이있다면 참고하지말것..![이유는 코딩을 못해서..ㅡㅡ;] const request = require('request);const cheerio = require('cheerio); request('http://www.ygosu.com/community/free/?page=1,function(err,response,body){ if(err) throw err; $ = cheerio.load(body) let json = [] , link , title $('.bd_list > tbody > tr').each(function(index,ere){ title = $(this).fi..