Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created February 12, 2021 09:25
Show Gist options
  • Save Akifcan/495548ff42eb1c99782bad6222c33e66 to your computer and use it in GitHub Desktop.
Save Akifcan/495548ff42eb1c99782bad6222c33e66 to your computer and use it in GitHub Desktop.
const cheerio = require('cheerio')
const axios = require('axios')
async function searchSong() {
const response = await axios.get(
'https://www.lyrics.com/lyric/35855205/Alan+Walker/Lost+Control') //sayfa kaynak kodunu alıyoruz
const $ = cheerio.load(response.data) 
// ve kaynak kodunu cheerioya yüklüyoruz
console.log($('.lyric-body').html()); 
//az önce tarayıcı konsolunda cevabını aldığımız .lyric-body sınıfını uygulamamızdan aratıyoruz
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment