from the api docs
search() needs a string, but it needs an object?! is the docs wrong? or i am wrong?
my code :
importGitHubfrom'github-api'vargh=newGitHub();gh.search().forRepositories({q:'react'}).then(({data: repos})=>{console.log(repos)}).catch((error)=>{console.log('forRepositories error:',error)})// or gh.search({q:'react'}).forRepositories().then(({data: repos})=>{console.log(repos)}).catch((error)=>{console.log('forRepositories error:',error)})env:
node -v
v5.1.1
npm -v
3.3.12
but nothing print out....
and there is no example for search? can i have an example for function search ?
thanks :)
from the api docs
search()needs a string, but it needs an object?! is the docs wrong? or i am wrong?my code :
env:
but nothing print out....
and there is no example for search? can i have an example for function
search?thanks :)