music-api-next:一款支持網易、xiami和QQ音樂的JS爬蟲庫
阿新 • • 發佈:2018-10-05
dbm 穩定 javascrip earch arch github 服務器 ole http
音樂,無界
讓音樂無界
如果你苦於挑選一個全方位、多平臺、簡便易用的音樂爬蟲庫,music-api-next
是不二選擇。
特性:
- 支持網易、蝦米和QQ三大主流音樂平臺
- 支持音樂關鍵詞搜索
- 支持音樂鏈接下載
- 支持音樂評論爬取
- 支持回調和
async/await
寫法 - 支持
webpack
打包部署 - 支持
pm2
服務器部署 - 可用、高效、穩定
項目地址
- Github: https://github.com/dongyuanxin/music-api-next
- npm: https://www.npmjs.com/package/music-api-next
- Document: https://godbmw.com/passage/62
- 中文文檔:https://godbmw.com/passage/63
快速開始
const musicAPI = require("music-api-next"); // 搜索接口: 返回指定關鍵詞的搜索信息 musicAPI .searchSong({ key: "周傑倫", page: 1, limit: 10, vendor: "qq" }) .then(songs => console.log(songs)) .catch(error => console.log(error.message)); // 歌曲信息接口: 返回指定歌曲的信息 musicAPI .getSong({ id: "003OUlho2HcRHC", vendor: "qq" }) .then(meta => console.log(meta)) .catch(error => console.log(error.message)); // 評論接口: 返回指定歌曲的評論 musicAPI .getComment({ id: "003OUlho2HcRHC", page: 1, limit: 20, vendor: "qq" }) .then(comments => console.log(comments)) .catch(error => console.log(error.message));
music-api-next:一款支持網易、xiami和QQ音樂的JS爬蟲庫