[Discord Bot] 네이버 실시간 급상승 Top20
[Discord Bot] 네이버 실시간 급상승 Top20
2020.02.08const request = require('request-promise'); const cheerio = require('cheerio'); const { RichEmbed } = require('discord.js'); async function getRank(args) { let url = 'http://rank.search.naver.com/rank.js'; let html; try { html = await request(url); } catch (e) { console.log("error"); return "Error"; } let json = JSON.parse(html); let jsonData = json.data[0].data const Rank_List = []; for (const ..