Skip to content

skovsgaard/tweetget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tweetget

A simple module to import a full Twitter stream.

To use: Simply require the module with require('./tweetget'); .

Example:

Return an object containing posts with appropriate timestamps:

tweetget('status402', function(err, posts) {
  if (!err) {
    console.log(posts);
  }
});

Write the object to a file:

tweetget.write('status402', 'file.txt', function(err, posts) {
  if (!err) {
    console.log('Yay! You wrote stuff to file.txt');
  }
});

About

A simple module to get a full twitter stream.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published