音樂,無界
如果你苦於挑選一個全方位、多平臺、簡便易用的音樂爬蟲庫,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));