const axios = require('axios');
const cheerio = require('cheerio');
axios.get('https://www.youtube.com/user/##########').then(data =>{
const $ = cheerio.load(data.data);
let text = '';
$('#channel-info > #title').each((i, elem) =>{
text += `${$(elem).text()}\n`;
});
console.log(text);
})