Skip to content

1tuan1/worshiptogether

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

worshiptogether

This module will help you to get API response from website http://www.worshiptogether.com/

examples

const wt = require('worshiptogether')

wt.searchSong('oceans', songs =>  {
    console.log(songs)
})

const wt = require('worshiptogether')

wt.autocomplete('10000', songs =>  {
    console.log(songs)
})

const wt = require('worshiptogether')

wt.searchVideo('10000', songs =>  {
    console.log(songs)
})

const wt = require('worshiptogether')


wt.get('http://www.worshiptogether.com/songs/good-good-father-tomlin', tab =>  {
        console.log(tab)
    })

or

const wt = require('worshiptogether')

wt.searchSong('oceans', songs =>  {
    wt.get(songs[0], tab =>  {
        console.log(tab)
    })
})

About

get songs from worthiptogether homepage http://www.worshiptogether.com/

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published