UNPKG

@acephale-green-party/coomer-downloader

Version:

Downloads images/videos from Coomer/Kemono/Reddit-NSFW user posts

27 lines (25 loc) 685 B
import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; export function argumentHander() { return yargs(hideBin(process.argv)) .option('url', { alias: 'u', type: 'string', description: 'Coomer/Kemono/Bunkr URL or u/<reddit-username>', demandOption: true, }) .option('dir', { type: 'string', description: 'Directory to download files to', default: './', }) .option('media', { type: 'string', choices: ['video', 'image', 'all'], default: 'all', description: "Download media type: 'video', 'image', or 'all', 'all' is default", }) .help() .alias('help', 'h').argv; }