https://github.com/jsososo/migumusicapi
咪咕音乐 nodejs api
https://github.com/jsososo/migumusicapi
migu nodejs typescript
Last synced: about 1 year ago
JSON representation
咪咕音乐 nodejs api
- Host: GitHub
- URL: https://github.com/jsososo/migumusicapi
- Owner: jsososo
- Created: 2019-12-11T07:42:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T11:11:48.000Z (over 2 years ago)
- Last Synced: 2025-03-30T08:08:22.192Z (about 1 year ago)
- Topics: migu, nodejs, typescript
- Language: TypeScript
- Homepage: https://jsososo.github.io/MiguMusicApi
- Size: 111 KB
- Stars: 261
- Watchers: 5
- Forks: 100
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QQMusicApi
[](https://www.npmjs.com/package/migu-music-api)
[](https://github.com/jsososo/MiguMusicApi)
[](https://github.com/jsososo/MiguMusicApi)
接口参考:
[接口文档 Github](https://jsososo.github.io/MiguMusicApi/#/)
## 快速上手
### Node 服务
```shell script
git clone git@github.com:jsososo/MiguMusicApi.git
yarn
yarn start
```
### npm
```shell script
yarn add migu-music-api
```
#### 接口调用
```javascript
const miguMusic = require('migu-music-api').default;
// or
// import miguMusic from 'migu-music-api';
// 部分接口依赖 cookie, 这里穿参可以使用字符串或对象
miguMusic('search', { keyword: '周杰伦' })
.then((res) => console.log(res))
.catch((err) => console.error('err: ', err.message));
miguMusic('search')
.then((res) => console.log(res))
.catch((err) => console.error('err: ', err.message));
```