├── .gitattributes ├── .gitignore ├── README.md ├── helper ├── anoboy_helpers │ ├── anoboy_archive_helper.js │ ├── anoboy_blogger_helper.js │ ├── anoboy_episodes_helper.js │ └── anoboy_video_link_helper.js ├── array-helper.js ├── komiku_helpers │ └── komiku_helpers.js └── yourupload_helpers │ └── anoboy_yourupload_helper.js ├── package.json ├── routes ├── anoboy-route.js ├── komiku-route.js ├── manga-route.js └── proxy-route.js ├── services ├── anoboy-service.js ├── anoboy │ ├── anime_by_param_parser.js │ └── latest_anime_parser.js ├── komiku-service.js ├── local-proxy.js └── manga-service.js └── weebs-api-index.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/README.md -------------------------------------------------------------------------------- /helper/anoboy_helpers/anoboy_archive_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/anoboy_helpers/anoboy_archive_helper.js -------------------------------------------------------------------------------- /helper/anoboy_helpers/anoboy_blogger_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/anoboy_helpers/anoboy_blogger_helper.js -------------------------------------------------------------------------------- /helper/anoboy_helpers/anoboy_episodes_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/anoboy_helpers/anoboy_episodes_helper.js -------------------------------------------------------------------------------- /helper/anoboy_helpers/anoboy_video_link_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/anoboy_helpers/anoboy_video_link_helper.js -------------------------------------------------------------------------------- /helper/array-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/array-helper.js -------------------------------------------------------------------------------- /helper/komiku_helpers/komiku_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/komiku_helpers/komiku_helpers.js -------------------------------------------------------------------------------- /helper/yourupload_helpers/anoboy_yourupload_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/helper/yourupload_helpers/anoboy_yourupload_helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/package.json -------------------------------------------------------------------------------- /routes/anoboy-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/routes/anoboy-route.js -------------------------------------------------------------------------------- /routes/komiku-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/routes/komiku-route.js -------------------------------------------------------------------------------- /routes/manga-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/routes/manga-route.js -------------------------------------------------------------------------------- /routes/proxy-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/routes/proxy-route.js -------------------------------------------------------------------------------- /services/anoboy-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/services/anoboy-service.js -------------------------------------------------------------------------------- /services/anoboy/anime_by_param_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/services/anoboy/anime_by_param_parser.js -------------------------------------------------------------------------------- /services/anoboy/latest_anime_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/services/anoboy/latest_anime_parser.js -------------------------------------------------------------------------------- /services/komiku-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/services/komiku-service.js -------------------------------------------------------------------------------- /services/local-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/services/local-proxy.js -------------------------------------------------------------------------------- /services/manga-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/services/manga-service.js -------------------------------------------------------------------------------- /weebs-api-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahmih6/Weebs_Scraper/HEAD/weebs-api-index.js --------------------------------------------------------------------------------