UNPKG

2.37 kBMarkdownView Raw
1Manga Fetcher fetches and downloads manga images to your machine!
2
3### Requirements
4
5- Node.js (developed and tested with v0.10.21 and v0.11.5)
6- CoffeeScript
7
8### Installation
9
10``` bash
11npm install -g mangafetcher
12```
13
14### Currently supported manga
15
16Note that Manga Fetcher stores manga in a folder name 'manga' in your current directory.
17If the folder doesn't exist, it would be automatically created.
18
19- One Piece (Experimental)
20 - `mangafetcher -m one-piece -v 1 -e 1`
21 - `mangefetcher -m one-piece -v TBD -e 713` for TBD volumes
22
23- Naruto (Experimental)
24 - `mangafetcjer -m naruto -v 1 -e 1`
25
26- Bleach
27 - `mangafetcher -m bleach -v 44 -e 386`
28
29- Eyeshield 21
30 - `mangafetcher -m eyeshield21 -e 1`
31
32- Shaman King
33 - `mangafetcher -m sk -v 33 -e 292`
34
35- Shaman King Flowers
36 - `mangafetcher -m sk-f -e 1`
37
38- Denpa Kyoushi
39 - `mangafetcher -m denpa-kyoushi -e 1`
40
41- Trinity Seven
42 - `mangafetcher -m trinity-seven -e 1`
43
44- And [many more](https://github.com/phatograph/mangafetcher/blob/master/manga.coffee)!
45
46### Modes
47
48##### List mode
49
50If you already downloaded some manga and want to check for updates.
51You could run `mangafetcher -l` to check them.
52
53``` bash
54$ mangafetcher -l
55Shaman King Flowers 17 (local: 17/17)
56Trinity Seven 32 (local: 4/32)
57Nisekoi (KOMI Naoshi) 95 (local: 95/95)
58Denpa Kyoushi 92 (local: 59/92)
59Bleach 553 (local: 259/553)
60```
61
62##### Episode List mode
63
64Some mangas must have both volume and episode specified. And some of their
65volume/episode combination is quite hard to remember. Using this mode
66would quickly display this information. For example this displays a
67list of Tsubasa episodes.
68
69```
70$ mangafetcher -x -m tsubasa
71Captain Tsubasa 114 | Vol 37 | Nov 19, 2007
72Captain Tsubasa 113 | Vol 37 | Nov 19, 2007
73Captain Tsubasa 112 | Vol 37 | Nov 19, 2007
74Captain Tsubasa 111 | Vol 37 | Nov 19, 2007
75Captain Tsubasa 110 | Vol 37 | Nov 19, 2007
76Captain Tsubasa 109 | Vol 36 | Nov 19, 2007
77Captain Tsubasa 108 | Vol 36 | Nov 19, 2007
78...
79
80$ mf -m tsubasa -v 37 -e 114
81```
82
83##### Multiple episodes mode
84
85For convenient, since v.1.4 Manga Fetcher is able to queue and download
86multiple episodes at once. Using `-e` option with `x..y` range
87would download from episode x to y.
88
89``` bash
90$ mangefetcher -m eyeshield21 -e 201..210
91```
92
93
94All manga credits to [mangahere.com](http://mangahere.com) and [mangafox.me](http://mangafox.me)!