npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

music-api-next

v1.0.0

Published

Music API for search results, songs, comments from QQ, Xiami and Netease.

Downloads

14

Readme

music-api-next

Music API for search results, songs, comments from QQ, Xiami and Netease.

For more information on how to get started and how to use music-api-next, please see author's blog and comment there. For source files and issues, please visit the github repo.

DOCS

中文文档

Install

npm install music-api-next --save

If you are in China, please use:

cnpm install music-api-next --save

Quick Start

const musicAPI = require("music-api-next");

// Search API: search keywords on qq, xiami or netease
musicAPI
  .searchSong({
    key: "周杰伦",
    page: 1,
    limit: 10,
    vendor: "qq"
  })
  .then(songs => console.log(songs))
  .catch(error => console.log(error.message));

// Song API: get music meta including URL
musicAPI
  .getSong({
    id: "003OUlho2HcRHC",
    vendor: "qq"
  })
  .then(meta => console.log(meta))
  .catch(error => console.log(error.message));

// Comment API: get comments for the specified song
musicAPI
  .getComment({
    id: "003OUlho2HcRHC",
    page: 1,
    limit: 20,
    vendor: "qq"
  })
  .then(comments => console.log(comments))
  .catch(error => console.log(error.message));

Run with a server

git clone [email protected]:dongyuanxin/music-api-next.git
cd music-api-next
npm install
// run server on port: 5050
node server.js

You can see the results of music APIs by accessing the url.

For example:

  • Search API: http://localhost:5050/search/song?key=周杰伦&page=1&limit=10&vendor=qq
  • Song API: http://localhost:5050/get/song?id=003OUlho2HcRHC&vendor=qq
  • Comment API: http://localhost:5050/get/comment?id=003OUlho2HcRHC&page=1&limit=10&vendor=qq

Run with webpack

First, package with webpack.

git clone [email protected]:dongyuanxin/music-api-next.git
cd music-api-next
npm install
// use webpack to package program
// pacakged file named 'music-api-next.js' is placed in ./dist/
webpack

Then, you can move music-api-next.js very conveniently and use it in the following ways:

const musicAPI = require("./music-api-next");

// ...

API

  • musicAPI.searchSong(query):

    query: {
      key: String,
      page: Number,
      limit: Number,
      vendor: one of ['netease', 'xiami', 'qq']
    }
  • musicAPI.getSong(query):

    query: {
      id: String or Number,
      vendor: one of ['netease', 'xiami', 'qq']
    }
  • musicAPI.getComment(query):

    query: {
      id: String or Number,
      page: Number,
      limit: Number,
      vendor: one of ['netease', 'xiami', 'qq']
    }

Warning

  1. It cannot be used for commercial purposes.
  2. It runs only on NodeJS instead of browser.
  3. Please use it politely and don't put too much pressure on music platforms.

Thanks

The code for this project refers to the following open source projects and has been fixed, improved and added on NodeJS.

  1. listen1_chrome_extension: Has received a lawyer's letter from Tencent. May stop maintenance at the end of the year 2018.
  2. musicAPI: It has stopped maintenance one year ago. So its APIs are invalid.