Simple Scraper Spotify Downloader from SpotifyDown
Installation
> npm i @nechlophomeriaa/spotifydl
Usage
const { search, downloadTrack, downloadAlbum } = require("@nechlophomeriaa/spotifydl")
Search Function
(async () => {
const searchTrack = await search(query, limit)
console.log(searchTrack)
})
Download Single Track Function
(async () => {
const downTrack = await downloadTrack(song)
console.log(downTrack)
})
Download Albums Function
(async () => {
const downAlbums = await downloadAlbum(url)
console.log(downAlbums)
})
If there is bug/error please make an issue!