Created
February 12, 2021 09:25
-
-
Save Akifcan/495548ff42eb1c99782bad6222c33e66 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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