Minimal web scraper and push notifier for new messages on the Prohardver! forums (www.prohardver.hu).
- Clone this repository to your target system.
- Run 'npm install' to install dependencies.
- Cony
config.example.js
toconfig.js
(or try to run the application) - Set your Prohardver! and PushBullet credentials in
config.js
. - (Optional) Set message format and polling interval.
- Run with
node index.js
.
var Configuration = {
EnabledSites: [
{
'name': 'prohardver',
'username': 'Your Prohardver username', // !!! Fill it
'password': 'Your Prohardver password', // !!! Fill it
'checkInterval': 10, // in minutes
'format': 'list', // count or list
'notifyTo': 'all' // not implementes yet
}
],
PushBulletApiKey: 'Your PushBullet API key' // !!! Fill it
};
> git clone https://github.com/Yitsushi/prohardver-push-notifier.git
> npm install
> cp config.example.js config.js
Edit `config.js`.
> node index.js