├── .gitattributes ├── .github └── workflows │ ├── data_crawler.yml │ └── worker_deploy.yml ├── .gitignore ├── .gitpod.yml ├── .prettierrc.yml ├── LICENSE ├── README.md ├── crawler ├── airing.mjs ├── completed.mjs ├── constants.mjs ├── details.mjs ├── index.mjs ├── m3u8.mjs └── utils.mjs ├── dist ├── README.md └── worker.js ├── jest.config.mjs ├── jest ├── new.test.js └── search.test.js ├── package.json ├── pnpm-lock.yaml ├── src ├── anime.js ├── constants.js ├── list.js ├── main.js ├── response.js └── search.js └── wrangler.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/data_crawler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/.github/workflows/data_crawler.yml -------------------------------------------------------------------------------- /.github/workflows/worker_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/.github/workflows/worker_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/README.md -------------------------------------------------------------------------------- /crawler/airing.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/airing.mjs -------------------------------------------------------------------------------- /crawler/completed.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/completed.mjs -------------------------------------------------------------------------------- /crawler/constants.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/constants.mjs -------------------------------------------------------------------------------- /crawler/details.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/details.mjs -------------------------------------------------------------------------------- /crawler/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/index.mjs -------------------------------------------------------------------------------- /crawler/m3u8.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/m3u8.mjs -------------------------------------------------------------------------------- /crawler/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/crawler/utils.mjs -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/dist/worker.js -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /jest/new.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/jest/new.test.js -------------------------------------------------------------------------------- /jest/search.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/jest/search.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/anime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/src/anime.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/src/list.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/src/main.js -------------------------------------------------------------------------------- /src/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/src/response.js -------------------------------------------------------------------------------- /src/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/src/search.js -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLinCool/Myself-BBS-API/HEAD/wrangler.toml --------------------------------------------------------------------------------