Abdul Hamid
Abdul Hamid

Reputation: 3252

How to get tweets using node.js

is there a way of getting twitter tweets on your own site using node.js. I tried some node.js modules but did not get how to achieve this.

Upvotes: 4

Views: 2237

Answers (1)

MateodelNorte
MateodelNorte

Reputation: 1280

Depending on what you're trying to do, you may not even need to use node to do this. Twitter has a number of client-side widgets you can use to host your profile, tweets from a search, your favorites, or a list: https://twitter.com/about/resources/widgets

Now, if you want to begin manipulating those tweets or display them in a custom fashion, then you'll want to use the nTwitter module as First Zero suggested.

Upvotes: 4

Related Questions