Skip to content

RyannKim327/Billboard-worship-webscrape

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Billboard TOP 100 Worship songs

MPOP Reverse II

How to install

npm install top100bbworship

How to use (NodeJS)

const top100bb = require("top100bbworship")

(async () => {
	let top100 = await top100bb()
	console.log(top100)
})

Sample output (JSON)

[
	{
		"title": "Sample song",
		"artist": "Sample artist"
	}
]