├── .github └── workflows │ └── build-nodejs.yml ├── README.md └── nodejs ├── .gitignore ├── .prettierrc.json ├── .vscode └── launch.json ├── babel.config.cjs ├── esbuild-config.js ├── esbuild.js ├── nodemon.json ├── package-lock.json ├── package.json ├── readme.md ├── rollup-config.js ├── rollup.js └── src ├── dev.js ├── index.config.js ├── index.js ├── router.js ├── spider ├── book │ ├── 13bqg.js │ └── copymanga.js ├── pan │ └── alist.js └── video │ ├── ffm3u8.js │ ├── kkys.js │ ├── kunyu77.js │ └── push.js └── util ├── misc.js └── req.js /.github/workflows/build-nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/.github/workflows/build-nodejs.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/README.md -------------------------------------------------------------------------------- /nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | generated 3 | node_modules 4 | db.json 5 | -------------------------------------------------------------------------------- /nodejs/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/.prettierrc.json -------------------------------------------------------------------------------- /nodejs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/.vscode/launch.json -------------------------------------------------------------------------------- /nodejs/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/babel.config.cjs -------------------------------------------------------------------------------- /nodejs/esbuild-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/esbuild-config.js -------------------------------------------------------------------------------- /nodejs/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/esbuild.js -------------------------------------------------------------------------------- /nodejs/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/nodemon.json -------------------------------------------------------------------------------- /nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/package-lock.json -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/package.json -------------------------------------------------------------------------------- /nodejs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/readme.md -------------------------------------------------------------------------------- /nodejs/rollup-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/rollup-config.js -------------------------------------------------------------------------------- /nodejs/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/rollup.js -------------------------------------------------------------------------------- /nodejs/src/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/dev.js -------------------------------------------------------------------------------- /nodejs/src/index.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/index.config.js -------------------------------------------------------------------------------- /nodejs/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/index.js -------------------------------------------------------------------------------- /nodejs/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/router.js -------------------------------------------------------------------------------- /nodejs/src/spider/book/13bqg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/book/13bqg.js -------------------------------------------------------------------------------- /nodejs/src/spider/book/copymanga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/book/copymanga.js -------------------------------------------------------------------------------- /nodejs/src/spider/pan/alist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/pan/alist.js -------------------------------------------------------------------------------- /nodejs/src/spider/video/ffm3u8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/video/ffm3u8.js -------------------------------------------------------------------------------- /nodejs/src/spider/video/kkys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/video/kkys.js -------------------------------------------------------------------------------- /nodejs/src/spider/video/kunyu77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/video/kunyu77.js -------------------------------------------------------------------------------- /nodejs/src/spider/video/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/spider/video/push.js -------------------------------------------------------------------------------- /nodejs/src/util/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/util/misc.js -------------------------------------------------------------------------------- /nodejs/src/util/req.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdhnx/CatPawOpen/HEAD/nodejs/src/util/req.js --------------------------------------------------------------------------------