@s4p/music-api
TypeScript icon, indicating that this package has built-in type declarations

2.3.3 • Public • Published

music-api

npm build coverage

how to use

npm install @s4p/music-api

see test folder to learn more

search

function search(
  query: string | ISearchQuery,
  provider?: Provider | Provider[]
): Promise<ISearchItem[]>;

await search("Aragaki Yui");

getSong

function getSong(id: string, provider: Provider, br?: BitRate): Promise<ISong>;

await getSong("A781023E25C4D09EABCB307BE8BD12E8", Provider.kugou);

rank

function rank(
  provider: Provider,
  rankType: RankType,
  limit?: number,
  skip?: number
): Promise<ISearchItem[]>;

await rank(Provider.kugou, RankType.hot);

playlist

function playlist(provider: Provider, id: string): Promise<ISearchItem[]>;

await playlist(Provider.kugou, "235427");

album

function album(provider: Provider, id: string): Promise<ISearchItem[]>;

await album(Provider.kugou, "976931");

Proxy

if you set environment variable MUSIC_API_PROXY, it will let all provider use this proxy string.

MUSIC_API_PROXY="http://your_proxy" npm run test

if you want to control special provider, you can use setRequestOptions

function setRequestOptions(
  options?: { proxy: string },
  providers = [Provider.kugou, Provider.netease]
): void;

// disable all proxy, use system request
setRequestOptions();

// use proxy for all providers
setRequestOptions({ proxy: "http://your_proxy" });

// use proxy only for kugou
setRequestOptions({ proxy: "http://your_proxy" }, [Provider.kugou]);

Adapter

// https://github.com/jsososo/QQMusicApi
const config = {
  provider: "jsososo",
  search: {
    url: "/search",
    qs: { key: "{{keyword}}" },
    // https://jqplay.org/
    result:
      "[.data.list[] |  { id: .songmid, name: .songname, artists: [.singer[] |  { name: .name, id: .mid }] }]",
  },
  // song...
  // url...
  request: {
    baseUrl: "https://api.qq.jsososo.com",
    json: true,
    timeout: 10000,
    headers: {
      "User-Agent":
        "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36",
    },
  },
};
const adapter = new Adapter(config);

await adapter.search("泪了 曾沛慈");
await adapter.getSong("000pnwNj24cMHw");
await adapter.getUrl("000pnwNj24cMHw");

TODO

Readme

Keywords

Package Sidebar

Install

npm i @s4p/music-api

Weekly Downloads

0

Version

2.3.3

License

MIT

Unpacked Size

78.9 kB

Total Files

46

Last publish

Collaborators

  • xinshangshangxin
  • demoshang