https://github.com/dab0mb/blog-updater
https://github.com/dab0mb/blog-updater
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dab0mb/blog-updater
- Owner: DAB0mB
- Created: 2016-01-07T16:28:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-07T16:29:39.000Z (over 10 years ago)
- Last Synced: 2025-01-06T21:03:22.494Z (over 1 year ago)
- Language: CoffeeScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
})
```