music-api-next:一款支持网易、xiami和QQ音乐的JS爬虫库

时间:2022-01-05 18:47:54

音乐,*

让音乐*

如果你苦于挑选一个全方位、多平台、简便易用的音乐爬虫库,music-api-next是不二选择。

特性:

  • 支持网易、虾米和QQ三大主流音乐平台
  • 支持音乐关键词搜索
  • 支持音乐链接下载
  • 支持音乐评论爬取
  • 支持回调和async/await写法
  • 支持webpack打包部署
  • 支持pm2服务器部署
  • 可用、高效、稳定

项目地址

快速开始

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));