Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/revolunet/urlWatch


https://github.com/revolunet/urlWatch

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

## INSTALLATION

npm install urlWatch

## SIMPLE USAGE

``` js

var urlWatch = require('urlWatch');

var options = {
smtp: 'my.smtp.com',
curlConfig: {
host: 'my.domaine.com',
port: 80,
path: '/target/file/path',
method: 'POST',
},
mailConfig: {
sender: '[email protected]',
to: '[email protected]',
subject: 'urlWatch'
}
};

var watcher = new urlWatch(options);

watcher.run();

```

Take a look to `examples` for more complex usages.