Search()

Search for a query on Twitter

To do a search you can do :

bot.search('#npm', { lang:'en', limit: 1}).then(r => {
    
console.log(r);
});

add the limit option to limit how many results are there, add lang to filter the results to a specific language

Last updated