A cli utility for download manga from mangafox
npm install -g mfox
mfox-dl [options] [command]
-V, --version output the version number
-h, --help output usage information
mfox-dl chapters <manga>
e.g.
mfox-dl chapters toriko
mfox-dl down <manga> [chapter]
e.g.
mfox-dl down toriko 29
mfox-dl down <manga> [chapter]
e.g.
mfox-dl down gantz 10 4
mfox-dl down <manga> -r <a>..<b>
mfox-dl down gantz -r 20..37
Note: All the manga name must be the encountered in the link from mangafox i.e http://mangafox.me/manga/onepunch_man/ -> onepunch_man
npm install mfox --save
or
yarn add mfox
const {
downloadChapter,
multiDownload,
downloadPage
} = require('mfox')
// Download multiple mangas
multiDownload({
manga: 'gantz',
from: 112,
to: 145,
})
downloadChapter("sun_ken_rock", 35).run()
.then(_ => console.log("Done!"))
downloadPage("sun_ken_rock", 4, 10)
If you find a Bug and want to contribute send a PR or post an issue.