@bixent28/genius-scraper
v1.0.3
Published
A simple module that scraping lyrics from genius.com
Downloads
30
Readme
@bixent28/genius-scraper
A simple module that scraping lyrics from genius.com
How to Use
You can get token from this
(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
(async() => {
const genius = require("@bixent28/genius-scraper")
const dummy = genius.start('YOUR_TOKEN_HERE')
const lyrics = await dummy.getLyrics("URL_HERE")
console.log(lyrics)
})()