Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srod/node-twitter-mailer
https://github.com/srod/node-twitter-mailer
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/srod/node-twitter-mailer
- Owner: srod
- Created: 2011-06-17T23:52:07.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-23T08:31:07.000Z (over 13 years ago)
- Last Synced: 2024-10-16T02:03:03.116Z (28 days ago)
- Language: JavaScript
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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.