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

https://github.com/dab0mb/blog-updater


https://github.com/dab0mb/blog-updater

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# blog-updater

### Example

```js
var blogUpdater = require("blog-updater");

blogUpdater.update({
repoUrl: "https://github.com/DAB0mB/blog-updater",
srcPath: __dirname + "/blog.html",
dstPath: __dirname + "/updatedBlog.html"
}, function(err) {
console.log(err);
})
```