Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/srod/node-twitter-mailer


https://github.com/srod/node-twitter-mailer

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

# Node-twitter-mailer

A simple module to receive tweets by email.

You can watch hastag / people / keywords.

See server.js in examples/

## Installation

npm install node-twitter-mailer

## Quick Start

var twitterMailer = require('node-twitter-mailer').TweetMailer;

var config = {
twitter: {
user: "username_twitter",
password: "password_twitter",
action: "filter",
track: ['#nodejs']
},
email: {
subject: 'Twitter #nodejs',
from: '[email protected]',
to: '[email protected]'
}
};

new twitterMailer(config);

## Warning

Be careful when watching popular hashtag, you will be spammed !

Also check you spam folder.