1.0.0 • Published 6 years ago

node-img-crawler v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

node-img-crawler

一个简单的图片爬取模块,可以批量搜索本地文件中的图片链接并下载,基于nodejs

内容

功能特性

  • 基于nodejs实现
  • 批量下载图片
  • 配置多满足多样需求
  • 持续维护迭代

安装

NPM

npm install node-img-crawler --save

使用

var Crawler = require('../index.js');

new Crawler({
	isLog: true,
	postDir: 'post',
	excludeHosts: ['wanls4583.github.io'],
	targetHost: 'https://wanls4583.github.io/',
	replaceUrl: true
}).crawlImg();

案例

请查看example

配置项

keydescriptiondefaultval
isLog是否打印日志trueBoolean
imagesDir图片存储目录imagesString
excludeHosts需要排除爬取的图片链接域名列表[]Array
targetHost替换文章图片链接时的目标域名(只有replaceUrl为true才有效)空字符串String
replaceUrl是否替换文章图片链接falseBoolean

历史版本

See the GitHub 历史版本.

贡献

欢迎给出一些意见和优化,期待你的 Pull Request