A simple module that scraping lyrics from genius.com
npm install @bixent28/genius-scraperjavascript
(async() => {
const genius = require("@bixent28/genius-scraper")
const dummy = genius.start('YOUR_TOKEN_HERE')
const songSearch = await dummy.search("The Nights")
console.log(songSearch)
})()
`
Get Lyrics
`javascript
(async() => {
const genius = require("@bixent28/genius-scraper")
const dummy = genius.start('YOUR_TOKEN_HERE')
const lyrics = await dummy.getLyrics("URL_HERE")
console.log(lyrics)
})()
``