4chan-downloader 中文文档教程
4chan-downloader
下载 4chan 线程中的所有文件。
Install
npm install -g 4chan-downloader
CLI
帮助输出:
Usage: 4chan [options] <url> [<dir>]
Examples:
4chan <url> Download all files in a thread into {cwd}.
4chan <url> foo Download all files in a thread into {cwd}/foo.
4chan <url> foo/bar Download all files in a thread into {cwd}/foo/bar.
4chan -w <url> Download all and watch for new files.
4chan -w -i 20 <url> Download all and check for new files every 20 seconds.
4chan -f gif,webm <url> Download all gif and webm files.
4chan -s 200x100 <url> Download all files bigger than 200x100 pixels.
4chan -s 100 <url> Download all files bigger than 100x100 pixels.
Options:
-w, --watch Watch for new files.
-i, --interval Watching interval in seconds. [default: 10]
-f, --filter Filter specific file types. [default: "jpg,gif,png,webm"]
-o, --override Override existing files.
-n, --names Save with original file names.
-s, --size Smallest files to download. [default: "100x100"]
-t, --threads Limit of simultaneous downloads. [default: 1]
-v, --version Show version.
-h, --help Show help.
API
var FortuneDownloader = require('4chan-downloader');
var thread = new FortuneDownloader('http://boards...')
.threads(4)
.watch()
.downloadTo('foo/bar');
// ...
thread.stop();
FortuneDownloader(url)
构造函数。 new
关键字是可选的。 所有方法都是链接的。
#threads(count)
设置下载线程数。
#watch([interval])
让实例监视新文件。
interval Integer
以毫秒为单位的观看间隔。 默认值:10000
#filter(fun)
过滤掉特定文件的自定义函数。 当应该下载文件时,函数返回 true
,否则返回 false
。
函数参数:
- file
Object
File description object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 0, // set when file stars downloading completed: 0, // updated during downloading progress: 0 // updated during downloading }
#namer(fun)
返回保存文件时使用的名称的自定义函数。
函数参数:
- file
Object
File description object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 0, // set when file stars downloading completed: 0, // updated during downloading progress: 0 // updated during downloading }
#override(state)
设置实例是否应该覆盖已经存在的文件。 默认行为是 false
。
- state
Boolean
#destination(path)
保存文件的位置。 默认情况下,文件保存在当前工作目录中。
- path
String
#download()
开始下载。
#downloadTo(path)
简写:
FortuneDownloader(url)
.destination('foo/bar')
.download();
#stop()
清除当前下载队列,并在进行中取消观看。
它不会取消正在进行的下载流。
在调用 #stop()
并且正在进行的下载完成后,将触发 end
事件。 如果没有正在进行的下载,end
将被立即触发。
Properties
url
输入<代码>字符串。 主题网址。
queue
键入数组
。 要下载的文件数组(文件描述符对象)。 文件在 file:start
事件之前从此处删除。
finished
键入数组
。 下载的文件 URL 数组。 当 watching 处于活动状态时,任何后续下载都将过滤掉此数组中的文件。
active
输入<代码>整数。 当前正在进行的活动下载线程数。
Events
FortuneDownloader
实例是一个事件发射器。
parse
当页面已被解析且 #queue
数组已填充即将下载的文件时触发。
error
发生下载取消错误时触发。 当此事件触发时,end
事件不会。
回调参数:
- error
Error
end
当下载实例完成所有文件的下载,并且未启用监视时触发。
当调用 #stop()
并且所有正在进行的下载完成时也会触发。
file:start
文件开始下载时触发。
回调参数:
- file
Object
File descriptor object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 665600, // available now completed: 0, progress: 0 }
file:chunk
收到文件块时触发。
回调参数:
- chunk
Buffer
- file
Object
File descriptor object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 665600, completed: 40253, // sum of all chunks till now progress: 0.06139871873093349603416717510677 // completed / size }
file:progress
与 chunk 相同,但没有 chunk 参数:
- file
Object
File descriptor object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 665600, completed: 40253, // sum of all chunks till now progress: 0.06139871873093349603416717510677 // completed / size }
file:error
当文件下载发生错误时触发。 这些错误不会停止下载过程。
回调参数:
- error
Error
- file
Object
File descriptor object.
file:end
文件下载完成时触发。
回调参数:
- file
Object
File descriptor object.
License
MIT
4chan-downloader
Downloads all files in 4chan threads.
Install
npm install -g 4chan-downloader
CLI
Help output:
Usage: 4chan [options] <url> [<dir>]
Examples:
4chan <url> Download all files in a thread into {cwd}.
4chan <url> foo Download all files in a thread into {cwd}/foo.
4chan <url> foo/bar Download all files in a thread into {cwd}/foo/bar.
4chan -w <url> Download all and watch for new files.
4chan -w -i 20 <url> Download all and check for new files every 20 seconds.
4chan -f gif,webm <url> Download all gif and webm files.
4chan -s 200x100 <url> Download all files bigger than 200x100 pixels.
4chan -s 100 <url> Download all files bigger than 100x100 pixels.
Options:
-w, --watch Watch for new files.
-i, --interval Watching interval in seconds. [default: 10]
-f, --filter Filter specific file types. [default: "jpg,gif,png,webm"]
-o, --override Override existing files.
-n, --names Save with original file names.
-s, --size Smallest files to download. [default: "100x100"]
-t, --threads Limit of simultaneous downloads. [default: 1]
-v, --version Show version.
-h, --help Show help.
API
var FortuneDownloader = require('4chan-downloader');
var thread = new FortuneDownloader('http://boards...')
.threads(4)
.watch()
.downloadTo('foo/bar');
// ...
thread.stop();
FortuneDownloader(url)
Consturctor. new
keyword is optional. All methods are chaining.
#threads(count)
Set number of downloading threads.
#watch([interval])
Make instance watch for new files.
interval Integer
Watching interval in millisecods. Default: 10000
#filter(fun)
Custom function that filters out specific files. Function returns true
when the file should be downloaded and false
otherwise.
Function arguments:
- file
Object
File description object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 0, // set when file stars downloading completed: 0, // updated during downloading progress: 0 // updated during downloading }
#namer(fun)
Custom function that returns the name to be used when saving files.
Function arguments:
- file
Object
File description object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 0, // set when file stars downloading completed: 0, // updated during downloading progress: 0 // updated during downloading }
#override(state)
Set whether instance should override already existing files. Default behavior is false
.
- state
Boolean
#destination(path)
Where to save files. By default files are saved into current working directory.
- path
String
#download()
Starts downloading.
#downloadTo(path)
Shorthand for:
FortuneDownloader(url)
.destination('foo/bar')
.download();
#stop()
Clears current download queue, and cancels watching when in progress.
It does not cancel ongoing download streams.
After #stop()
has been called and ongoing downloads finished, end
event will be fired. If there were no ongoing downloads, end
will be fired immediately.
Properties
url
Type String
. Thread URL.
queue
Type Array
. Array of files (file descriptor objects) to be downloaded. File is removed from here right before file:start
event.
finished
Type Array
. Array of downloaded file URLs. When watching is active, any subsequent download will filter out files in this array.
active
Type Integer
. Number of currently active download threads in progress.
Events
FortuneDownloader
instance is an event emitter.
parse
Triggered when page has been parsed, and #queue
array has been populated with files soon to be downloaded.
error
Triggered when download canceling error has happened. When this event fires, end
event won't.
Callback arguments:
- error
Error
end
Triggered when download instance has finished downloading all files, and watching is not enabled.
Also fires when #stop()
is called and all ongoing downloads finish.
file:start
Triggered when file starts downloading.
Callback arguments:
- file
Object
File descriptor object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 665600, // available now completed: 0, progress: 0 }
file:chunk
Triggered when chunk of a file has been received.
Callback arguments:
- chunk
Buffer
- file
Object
File descriptor object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 665600, completed: 40253, // sum of all chunks till now progress: 0.06139871873093349603416717510677 // completed / size }
file:progress
Same as chunk, but without the chunk argument:
- file
Object
File descriptor object:js { url: 'http://i.4cdn.org/g/1407348528901.jpg', prettysize: '650 KB', width: 1920, height: 1080, name: 'Original file name.jpg', idname: '1407348528901.jpg', type: 'jpg', size: 665600, completed: 40253, // sum of all chunks till now progress: 0.06139871873093349603416717510677 // completed / size }
file:error
Triggered when file downloading error has happened. These errors don't stop the downloading process.
Callback arguments:
- error
Error
- file
Object
File descriptor object.
file:end
Triggered when file has finished with downloading.
Callback arguments:
- file
Object
File descriptor object.
License
MIT
你可能也喜欢
- 2mundos-cropperjs 中文文档教程
- @01ht/ht-need-login 中文文档教程
- @0x/contracts-exchange-libs 中文文档教程
- @168-cli/cli 中文文档教程
- @21cnfe/vui 中文文档教程
- @3test/ethereum-bitski-frontend-provider 中文文档教程
- @3yourmind/kotti-ui 中文文档教程
- @absa-oss/spline-ui-test 中文文档教程
- @ac-codeprod/vuetify2-daterange-picker 中文文档教程
- @accessible-web-components/tabs 中文文档教程