Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/swaathi/node-twitter

A twitter bot that auto replies.
https://github.com/swaathi/node-twitter

Last synced: 7 days ago
JSON representation

A twitter bot that auto replies.

Awesome Lists containing this project

README

        

Twitter Reply
=====

A twitter bot based on 'reply' for NodeJS.

####Local Setup:

All that you need to do is create a new file named runtime.js inside the config folder, and update this:


{
"twitter" : {
"consumer_key" : "",
"consumer_secret" : "",
"access_token_key" : "",
"access_token_secret" : ""
},
"keywords" : "words to match in tweet",
"match" : "a string or regex. (capture groups are allowed)",
"replies" : [
"some reply. Can reference parts of the tweet like [user.screen_name] or regex matches like $1"
],
"max_replies_per_minute" : 6,
"in_reply_to" : true
}

This code is based on: Jesse Ditson's reply bot running on NodeJS

Currently being maintained by Karthik K and Swaathi K